#[repr(u32)]pub enum ZirconInterruptMode {
Default = 0,
EdgeLow = 2,
EdgeHigh = 4,
LevelLow = 6,
LevelHigh = 8,
EdgeBoth = 10,
}Expand description
Mode for creating zircon interrupts. In sync with ZX_INTERRUPT_MODE_* values from //zircon/system/public/zircon/types.h.
Variants§
Implementations§
Source§impl ZirconInterruptMode
impl ZirconInterruptMode
pub fn from_primitive(prim: u32) -> Option<Self>
pub const fn into_primitive(self) -> u32
Trait Implementations§
Source§impl Clone for ZirconInterruptMode
impl Clone for ZirconInterruptMode
Source§fn clone(&self) -> ZirconInterruptMode
fn clone(&self) -> ZirconInterruptMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ZirconInterruptMode
impl Debug for ZirconInterruptMode
Source§impl<D: ResourceDialect> Decode<ZirconInterruptMode, D> for ZirconInterruptMode
impl<D: ResourceDialect> Decode<ZirconInterruptMode, D> for ZirconInterruptMode
Source§impl<D: ResourceDialect> Encode<ZirconInterruptMode, D> for ZirconInterruptMode
impl<D: ResourceDialect> Encode<ZirconInterruptMode, D> for ZirconInterruptMode
Source§impl Hash for ZirconInterruptMode
impl Hash for ZirconInterruptMode
Source§impl Ord for ZirconInterruptMode
impl Ord for ZirconInterruptMode
Source§fn cmp(&self, other: &ZirconInterruptMode) -> Ordering
fn cmp(&self, other: &ZirconInterruptMode) -> Ordering
1.21.0 · 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 PartialEq for ZirconInterruptMode
impl PartialEq for ZirconInterruptMode
Source§impl PartialOrd for ZirconInterruptMode
impl PartialOrd for ZirconInterruptMode
Source§impl TypeMarker for ZirconInterruptMode
impl TypeMarker for ZirconInterruptMode
Source§type Owned = ZirconInterruptMode
type Owned = ZirconInterruptMode
The owned Rust type which this FIDL type decodes into.
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align.Source§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned to a single memcpy. Read moreSource§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned to a single memcpy.Source§impl ValueTypeMarker for ZirconInterruptMode
impl ValueTypeMarker for ZirconInterruptMode
Source§type Borrowed<'a> = ZirconInterruptMode
type Borrowed<'a> = ZirconInterruptMode
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned. There are three cases: Read moreimpl Copy for ZirconInterruptMode
impl Eq for ZirconInterruptMode
impl StructuralPartialEq for ZirconInterruptMode
Auto Trait Implementations§
impl Freeze for ZirconInterruptMode
impl RefUnwindSafe for ZirconInterruptMode
impl Send for ZirconInterruptMode
impl Sync for ZirconInterruptMode
impl Unpin for ZirconInterruptMode
impl UnsafeUnpin for ZirconInterruptMode
impl UnwindSafe for ZirconInterruptMode
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