pub struct BinaryField {
pub name: &'static str,
pub offset: usize,
pub field_type: BinaryFieldType,
pub description: &'static str,
}Expand description
One field inside a fixed-layout binary record (e.g. the 72-byte UserAssist
value). Fully const-constructible.
Fields§
§name: &'static str§offset: usize§field_type: BinaryFieldType§description: &'static strTrait Implementations§
Source§impl Clone for BinaryField
impl Clone for BinaryField
Source§fn clone(&self) -> BinaryField
fn clone(&self) -> BinaryField
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 moreSource§impl Debug for BinaryField
impl Debug for BinaryField
Source§impl PartialEq for BinaryField
impl PartialEq for BinaryField
impl Copy for BinaryField
impl Eq for BinaryField
impl StructuralPartialEq for BinaryField
Auto Trait Implementations§
impl Freeze for BinaryField
impl RefUnwindSafe for BinaryField
impl Send for BinaryField
impl Sync for BinaryField
impl Unpin for BinaryField
impl UnsafeUnpin for BinaryField
impl UnwindSafe for BinaryField
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