Struct fidl::encoding::EmptyPayload
source · pub struct EmptyPayload;
Expand description
A FIDL type representing an empty payload (0 bytes).
Trait Implementations§
source§impl<D: ResourceDialect> Decode<EmptyPayload, D> for ()
impl<D: ResourceDialect> Decode<EmptyPayload, D> for ()
source§impl<D: ResourceDialect> Encode<EmptyPayload, D> for ()
impl<D: ResourceDialect> Encode<EmptyPayload, D> for ()
source§impl TypeMarker for EmptyPayload
impl TypeMarker for EmptyPayload
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 EmptyPayload
impl ValueTypeMarker for EmptyPayload
Auto Trait Implementations§
impl Freeze for EmptyPayload
impl RefUnwindSafe for EmptyPayload
impl Send for EmptyPayload
impl Sync for EmptyPayload
impl Unpin for EmptyPayload
impl UnwindSafe for EmptyPayload
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