pub struct Address<T0, T1, T2> {
pub bus: T0,
pub device: T1,
pub function: T2,
}Expand description
The generic type corresponding to Address.
Fields§
§bus: T0§device: T1§function: T2Trait Implementations§
Auto Trait Implementations§
impl<T0, T1, T2> Freeze for Address<T0, T1, T2>
impl<T0, T1, T2> RefUnwindSafe for Address<T0, T1, T2>
impl<T0, T1, T2> Send for Address<T0, T1, T2>
impl<T0, T1, T2> Sync for Address<T0, T1, T2>
impl<T0, T1, T2> Unpin for Address<T0, T1, T2>
impl<T0, T1, T2> UnsafeUnpin for Address<T0, T1, T2>
impl<T0, T1, T2> UnwindSafe for Address<T0, T1, T2>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]