pub enum Iommu {
StubIommu(StubIommu),
ArmSmmu(ArmSmmu),
UnknownOrdinal_(u64),
}Variants§
Implementations§
Trait Implementations§
impl Copy for Iommu
Source§impl<___E> Encode<Iommu<'static>, ___E> for Iommuwhere
___E: InternalHandleEncoder + ?Sized + Encoder,
impl<___E> Encode<Iommu<'static>, ___E> for Iommuwhere
___E: InternalHandleEncoder + ?Sized + Encoder,
Source§impl<'a, ___E> Encode<Iommu<'static>, ___E> for &'a Iommuwhere
___E: InternalHandleEncoder + ?Sized + Encoder,
impl<'a, ___E> Encode<Iommu<'static>, ___E> for &'a Iommuwhere
___E: InternalHandleEncoder + ?Sized + Encoder,
Source§impl<___E> EncodeOption<Iommu<'static>, ___E> for Iommu
impl<___E> EncodeOption<Iommu<'static>, ___E> for Iommu
Source§fn encode_option(
this: Option<Self>,
encoder: &mut ___E,
out: &mut MaybeUninit<Iommu<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode_option( this: Option<Self>, encoder: &mut ___E, out: &mut MaybeUninit<Iommu<'static>>, _: (), ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and output.
Source§impl<'a, ___E> EncodeOption<Iommu<'static>, ___E> for &'a Iommu
impl<'a, ___E> EncodeOption<Iommu<'static>, ___E> for &'a Iommu
Source§fn encode_option(
this: Option<Self>,
encoder: &mut ___E,
out: &mut MaybeUninit<Iommu<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode_option( this: Option<Self>, encoder: &mut ___E, out: &mut MaybeUninit<Iommu<'static>>, _: (), ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and output.
impl Eq for Iommu
Source§impl<'de> FromWireOption<Iommu<'de>> for Iommu
impl<'de> FromWireOption<Iommu<'de>> for Iommu
Source§fn from_wire_option(wire: Iommu<'de>) -> Option<Self>
fn from_wire_option(wire: Iommu<'de>) -> Option<Self>
Converts the given owned value to an option of this type.
Source§impl<'de> FromWireOption<Iommu<'de>> for Box<Iommu>
impl<'de> FromWireOption<Iommu<'de>> for Box<Iommu>
Source§fn from_wire_option(wire: Iommu<'de>) -> Option<Self>
fn from_wire_option(wire: Iommu<'de>) -> Option<Self>
Converts the given owned value to an option of this type.
Source§impl<'de> FromWireOptionRef<Iommu<'de>> for Box<Iommu>
impl<'de> FromWireOptionRef<Iommu<'de>> for Box<Iommu>
Source§fn from_wire_option_ref(wire: &Iommu<'de>) -> Option<Self>
fn from_wire_option_ref(wire: &Iommu<'de>) -> Option<Self>
Converts the given reference to an option of this type.
Source§impl<'de> FromWireRef<Iommu<'de>> for Iommu
impl<'de> FromWireRef<Iommu<'de>> for Iommu
Source§fn from_wire_ref(wire: &Iommu<'de>) -> Self
fn from_wire_ref(wire: &Iommu<'de>) -> Self
Converts the given reference to this type.
Source§impl Ord for Iommu
impl Ord for Iommu
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Iommu
impl PartialOrd for Iommu
impl StructuralPartialEq for Iommu
Auto Trait Implementations§
impl Freeze for Iommu
impl RefUnwindSafe for Iommu
impl Send for Iommu
impl Sync for Iommu
impl Unpin for Iommu
impl UnsafeUnpin for Iommu
impl UnwindSafe for Iommu
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, W> FromWireOption<Box<'_, W>> for Twhere
T: FromWire<W>,
impl<T, W> FromWireOption<Box<'_, W>> for Twhere
T: FromWire<W>,
§fn from_wire_option(wire: Box<'_, W>) -> Option<T>
fn from_wire_option(wire: Box<'_, W>) -> Option<T>
Converts the given owned value to an option of this type.
§impl<T, W> FromWireOptionRef<Box<'_, W>> for Twhere
T: FromWireRef<W>,
impl<T, W> FromWireOptionRef<Box<'_, W>> for Twhere
T: FromWireRef<W>,
§fn from_wire_option_ref(wire: &Box<'_, W>) -> Option<T>
fn from_wire_option_ref(wire: &Box<'_, W>) -> Option<T>
Converts the given reference to an option of this type.
§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]