pub struct StackStr<const N: usize> {
pub bytes: [u8; N],
pub str_: *const str,
}
Fields§
§bytes: [u8; N]
§str_: *const str
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<const N: usize> Freeze for StackStr<N>
impl<const N: usize> RefUnwindSafe for StackStr<N>
impl<const N: usize> !Send for StackStr<N>
impl<const N: usize> !Sync for StackStr<N>
impl<const N: usize> Unpin for StackStr<N>
impl<const N: usize> UnwindSafe for StackStr<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