pub struct FixedString<const N: usize>(pub String);Tuple Fields§
§0: StringTrait Implementations§
Source§impl<const N: usize> Clone for FixedString<N>
impl<const N: usize> Clone for FixedString<N>
Source§fn clone(&self) -> FixedString<N>
fn clone(&self) -> FixedString<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 moreAuto Trait Implementations§
impl<const N: usize> Freeze for FixedString<N>
impl<const N: usize> RefUnwindSafe for FixedString<N>
impl<const N: usize> Send for FixedString<N>
impl<const N: usize> Sync for FixedString<N>
impl<const N: usize> Unpin for FixedString<N>
impl<const N: usize> UnsafeUnpin for FixedString<N>
impl<const N: usize> UnwindSafe for FixedString<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