pub enum EventPayload {
CapabilityRequested(CapabilityRequestedPayload),
Purged(PurgedPayload),
DirectoryReady(DirectoryReadyPayload),
Discovered(DiscoveredPayload),
Destroyed(DestroyedPayload),
Resolved(ResolvedPayload),
Started(StartedPayload),
Stopped(StoppedPayload),
DebugStarted(DebugStartedPayload),
Unresolved(UnresolvedPayload),
// some variants omitted
}
Expand description
Encapsulates additional data/protocols for some event types.
Variants§
CapabilityRequested(CapabilityRequestedPayload)
Payload for CapabilityRequested events
Purged(PurgedPayload)
Payload for Purged events.
DirectoryReady(DirectoryReadyPayload)
Payload for DirectoryReady events
Discovered(DiscoveredPayload)
Payload for Discovered events.
Destroyed(DestroyedPayload)
Payload for Destroyed events.
Resolved(ResolvedPayload)
Payload for Resolved events
Started(StartedPayload)
Payload for Started events
Stopped(StoppedPayload)
Payload for Stopped events
DebugStarted(DebugStartedPayload)
Payload for DebugStarted events
Unresolved(UnresolvedPayload)
Payload for Unresolved events
Implementations§
source§impl EventPayload
impl EventPayload
pub fn ordinal(&self) -> u64
pub fn unknown_variant_for_testing() -> Self
pub fn is_unknown(&self) -> bool
Trait Implementations§
source§impl Debug for EventPayload
impl Debug for EventPayload
source§impl Decode<EventPayload, DefaultFuchsiaResourceDialect> for EventPayload
impl Decode<EventPayload, DefaultFuchsiaResourceDialect> for EventPayload
source§impl Encode<EventPayload, DefaultFuchsiaResourceDialect> for &mut EventPayload
impl Encode<EventPayload, DefaultFuchsiaResourceDialect> for &mut EventPayload
source§impl PartialEq for EventPayload
impl PartialEq for EventPayload
source§impl ResourceTypeMarker for EventPayload
impl ResourceTypeMarker for EventPayload
§type Borrowed<'a> = &'a mut EventPayload
type Borrowed<'a> = &'a mut EventPayload
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &mut Self::Owned
. There are three cases: Read moresource§fn take_or_borrow<'a>(
value: &'a mut <Self as TypeMarker>::Owned,
) -> Self::Borrowed<'a>
fn take_or_borrow<'a>( value: &'a mut <Self as TypeMarker>::Owned, ) -> Self::Borrowed<'a>
Cheaply converts from
&mut Self::Owned
to Self::Borrowed
. For
HandleBased
types this is “take” (it returns an owned handle and
replaces value
with Handle::invalid
), and for all other types it is
“borrow” (just converts from one reference to another).source§impl TypeMarker for EventPayload
impl TypeMarker for EventPayload
§type Owned = EventPayload
type Owned = EventPayload
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
.§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 Standalone<DefaultFuchsiaResourceDialect> for EventPayload
Auto Trait Implementations§
impl Freeze for EventPayload
impl RefUnwindSafe for EventPayload
impl Send for EventPayload
impl Sync for EventPayload
impl Unpin for EventPayload
impl UnwindSafe for EventPayload
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