pub struct FieldName<const N: u64>(/* private fields */);
Expand description
Representation of a field name.
A field name x
is represented with FieldName<{field_name_hash("x")}>
.
Auto Trait Implementations§
impl<const N: u64> Freeze for FieldName<N>
impl<const N: u64> RefUnwindSafe for FieldName<N>
impl<const N: u64> Send for FieldName<N>
impl<const N: u64> Sync for FieldName<N>
impl<const N: u64> Unpin for FieldName<N>
impl<const N: u64> UnwindSafe for FieldName<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