Struct fidl::encoding::EmptyStruct
source · pub struct EmptyStruct;
Expand description
The FIDL type used for an empty success variant in a result union. Result unions occur in two-way methods that are flexible or that use error syntax.
Trait Implementations§
source§impl<D: ResourceDialect> Decode<EmptyStruct, D> for ()
impl<D: ResourceDialect> Decode<EmptyStruct, D> for ()
source§impl<D: ResourceDialect> Encode<EmptyStruct, D> for ()
impl<D: ResourceDialect> Encode<EmptyStruct, D> for ()
source§impl TypeMarker for EmptyStruct
impl TypeMarker for EmptyStruct
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 EmptyStruct
impl ValueTypeMarker for EmptyStruct
Auto Trait Implementations§
impl Freeze for EmptyStruct
impl RefUnwindSafe for EmptyStruct
impl Send for EmptyStruct
impl Sync for EmptyStruct
impl Unpin for EmptyStruct
impl UnwindSafe for EmptyStruct
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