pub struct Irq {
pub irq: Option<IrqSpec>,
pub mode: Option<ZirconInterruptMode>,
pub properties: Option<Vec<NodeProperty2>>,
pub name: Option<String>,
pub wake_vector: Option<bool>,
}Fields§
§irq: Option<IrqSpec>§mode: Option<ZirconInterruptMode>§properties: Option<Vec<NodeProperty2>>§name: Option<String>§wake_vector: Option<bool>Trait Implementations§
Source§impl<___E> Encode<Irq<'static>, ___E> for Irqwhere
___E: Encoder + ?Sized,
impl<___E> Encode<Irq<'static>, ___E> for Irqwhere
___E: Encoder + ?Sized,
Source§impl<'a, ___E> Encode<Irq<'static>, ___E> for &'a Irqwhere
___E: Encoder + ?Sized,
impl<'a, ___E> Encode<Irq<'static>, ___E> for &'a Irqwhere
___E: Encoder + ?Sized,
Source§impl<'de> FromWireRef<Irq<'de>> for Irq
impl<'de> FromWireRef<Irq<'de>> for Irq
Source§fn from_wire_ref(wire: &Irq<'de>) -> Self
fn from_wire_ref(wire: &Irq<'de>) -> Self
Converts the given reference to this type.
impl StructuralPartialEq for Irq
Auto Trait Implementations§
impl Freeze for Irq
impl RefUnwindSafe for Irq
impl Send for Irq
impl Sync for Irq
impl Unpin for Irq
impl UnsafeUnpin for Irq
impl UnwindSafe for Irq
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]