Struct fidl::encoding::BoundedString
source · pub struct BoundedString<const N: usize>;
Expand description
The FIDL type string:N
.
Trait Implementations§
source§impl<const N: usize, D: ResourceDialect> Decode<BoundedString<N>, D> for String
impl<const N: usize, D: ResourceDialect> Decode<BoundedString<N>, D> for String
source§impl<const N: usize, D: ResourceDialect> Encode<BoundedString<N>, D> for &str
impl<const N: usize, D: ResourceDialect> Encode<BoundedString<N>, D> for &str
source§impl<const N: usize> TypeMarker for BoundedString<N>
impl<const N: usize> TypeMarker for BoundedString<N>
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<const N: usize> ValueTypeMarker for BoundedString<N>
impl<const N: usize> ValueTypeMarker for BoundedString<N>
Auto Trait Implementations§
impl<const N: usize> Freeze for BoundedString<N>
impl<const N: usize> RefUnwindSafe for BoundedString<N>
impl<const N: usize> Send for BoundedString<N>
impl<const N: usize> Sync for BoundedString<N>
impl<const N: usize> Unpin for BoundedString<N>
impl<const N: usize> UnwindSafe for BoundedString<N>
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