pub struct PlugState {
pub plugged: Option<bool>,
pub plug_state_time: Option<i64>,
/* private fields */
}
Expand description
Plug state for the interconnect.
If the driver reports a plug_detect_capabilities
equal to HARDWIRED, then the driver should
respond to WatchElementState
only the first time it is called for a given interconnect, with
plugged
set to true and plug_state_time
set to time ‘0’.
Fields§
§plugged: Option<bool>
Indicates whether the interconnect is currently plugged in.
Required
plug_state_time: Option<i64>
Indicates when the current plugged
state was set, using ZX_CLOCK_MONOTONIC
.
Cannot be negative.
Required.
Trait Implementations§
Source§impl<D: ResourceDialect> Decode<PlugState, D> for PlugState
impl<D: ResourceDialect> Decode<PlugState, D> for PlugState
Source§impl TypeMarker for PlugState
impl TypeMarker for PlugState
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
.§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 more§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 PlugState
impl ValueTypeMarker for PlugState
impl Persistable for PlugState
impl StructuralPartialEq for PlugState
Auto Trait Implementations§
impl Freeze for PlugState
impl RefUnwindSafe for PlugState
impl Send for PlugState
impl Sync for PlugState
impl Unpin for PlugState
impl UnwindSafe for PlugState
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)