pub struct RecordStatic<'a> { /* private fields */ }
Expand description
Information that can be static in the given record thus allowing to optimize record creation to be done mostly at compile-time.
This should be constructed via the record_static!
macro.
Auto Trait Implementations§
impl<'a> Freeze for RecordStatic<'a>
impl<'a> RefUnwindSafe for RecordStatic<'a>
impl<'a> Send for RecordStatic<'a>
impl<'a> Sync for RecordStatic<'a>
impl<'a> Unpin for RecordStatic<'a>
impl<'a> UnwindSafe for RecordStatic<'a>
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