pub struct FixedUtf16Str<const N: usize> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<const N: usize> Clone for FixedUtf16Str<N>
impl<const N: usize> Clone for FixedUtf16Str<N>
Source§fn clone(&self) -> FixedUtf16Str<N>
fn clone(&self) -> FixedUtf16Str<N>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<const N: usize> Debug for FixedUtf16Str<N>
impl<const N: usize> Debug for FixedUtf16Str<N>
Source§impl<const N: usize> Zeroable for FixedUtf16Str<N>
Available on crate feature bytemuck only.
impl<const N: usize> Zeroable for FixedUtf16Str<N>
Available on crate feature
bytemuck only.impl<const N: usize> Copy for FixedUtf16Str<N>
impl<const N: usize> Pod for FixedUtf16Str<N>
Available on crate feature
bytemuck only.Auto Trait Implementations§
impl<const N: usize> Freeze for FixedUtf16Str<N>
impl<const N: usize> RefUnwindSafe for FixedUtf16Str<N>
impl<const N: usize> Send for FixedUtf16Str<N>
impl<const N: usize> Sync for FixedUtf16Str<N>
impl<const N: usize> Unpin for FixedUtf16Str<N>
impl<const N: usize> UnsafeUnpin for FixedUtf16Str<N>
impl<const N: usize> UnwindSafe for FixedUtf16Str<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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.