#[repr(u32)]pub enum EscrowError {
EscrowInspectFailed = 9,
EscrowNoInspectController = 10,
}Expand description
Errors returned by Shutdown.
Variants§
EscrowInspectFailed = 9
The call to fuchsia.inspect.InspectSink.FrozenEscrow failed.
EscrowNoInspectController = 10
The time source does not have an Inspect controller to escrow.
Implementations§
Source§impl EscrowError
impl EscrowError
pub fn from_primitive(prim: u32) -> Option<Self>
pub const fn into_primitive(self) -> u32
Trait Implementations§
Source§impl Clone for EscrowError
impl Clone for EscrowError
Source§fn clone(&self) -> EscrowError
fn clone(&self) -> EscrowError
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 EscrowError
impl Debug for EscrowError
Source§impl<D: ResourceDialect> Decode<EscrowError, D> for EscrowError
impl<D: ResourceDialect> Decode<EscrowError, D> for EscrowError
Source§impl<D: ResourceDialect> Encode<EscrowError, D> for EscrowError
impl<D: ResourceDialect> Encode<EscrowError, D> for EscrowError
Source§impl Hash for EscrowError
impl Hash for EscrowError
Source§impl Ord for EscrowError
impl Ord for EscrowError
Source§fn cmp(&self, other: &EscrowError) -> Ordering
fn cmp(&self, other: &EscrowError) -> 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 EscrowError
impl PartialEq for EscrowError
Source§impl PartialOrd for EscrowError
impl PartialOrd for EscrowError
Source§impl TypeMarker for EscrowError
impl TypeMarker for EscrowError
Source§type Owned = EscrowError
type Owned = EscrowError
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 EscrowError
impl ValueTypeMarker for EscrowError
Source§type Borrowed<'a> = EscrowError
type Borrowed<'a> = EscrowError
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 EscrowError
impl Eq for EscrowError
impl StructuralPartialEq for EscrowError
Auto Trait Implementations§
impl Freeze for EscrowError
impl RefUnwindSafe for EscrowError
impl Send for EscrowError
impl Sync for EscrowError
impl Unpin for EscrowError
impl UnsafeUnpin for EscrowError
impl UnwindSafe for EscrowError
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