#[repr(C)]
pub union LengthOrRight<T: StringFormat> {
/* private fields */
}
Expand description
A union representing either the length of the entry or a pointer to the next entry. This allows for flexible storage of either data (length) or a pointer (right).
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for LengthOrRight<T>
impl<T> RefUnwindSafe for LengthOrRight<T>
impl<T> !Send for LengthOrRight<T>
impl<T> !Sync for LengthOrRight<T>
impl<T> Unpin for LengthOrRight<T>
impl<T> UnwindSafe for LengthOrRight<T>
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