Enum Initiator
#[repr(u32)]pub enum Initiator {
User = 0,
Service = 1,
}
Expand description
Who or what initiated the update installation.
Variants§
User = 0
The install was initiated by an interactive user, or the user is otherwise blocked and waiting for the result of this update.
Service = 1
The install was initiated by a service, in the background.
Implementations§
§impl Initiator
impl Initiator
pub fn from_primitive(prim: u32) -> Option<Initiator>
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
👎Deprecated: Strict enums should not use
is_unknown
Trait Implementations§
§impl<D> Decode<Initiator, D> for Initiatorwhere
D: ResourceDialect,
impl<D> Decode<Initiator, D> for Initiatorwhere
D: ResourceDialect,
§impl<D> Encode<Initiator, D> for Initiatorwhere
D: ResourceDialect,
impl<D> Encode<Initiator, D> for Initiatorwhere
D: ResourceDialect,
§impl Ord for Initiator
impl Ord for Initiator
§impl PartialOrd for Initiator
impl PartialOrd for Initiator
§impl TypeMarker for Initiator
impl TypeMarker for Initiator
§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.
§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.§impl ValueTypeMarker for Initiator
impl ValueTypeMarker for Initiator
§type Borrowed<'a> = Initiator
type Borrowed<'a> = Initiator
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<Initiator as TypeMarker>::Owned,
) -> <Initiator as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<Initiator as TypeMarker>::Owned, ) -> <Initiator as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Copy for Initiator
impl Eq for Initiator
impl StructuralPartialEq for Initiator
Auto Trait Implementations§
impl Freeze for Initiator
impl RefUnwindSafe for Initiator
impl Send for Initiator
impl Sync for Initiator
impl Unpin for Initiator
impl UnwindSafe for Initiator
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