pub struct AttributeRecord {
    pub record_type: VariableRecordType,
    pub specific_fields: Vec<u8>,
}Expand description
6.2.10 Attribute record
Fields§
§record_type: VariableRecordType§specific_fields: Vec<u8>Implementations§
Source§impl AttributeRecord
 
impl AttributeRecord
pub fn new() -> Self
pub fn with_record_type(self, record_type: VariableRecordType) -> Self
pub fn with_specific_fields(self, specific_fields: Vec<u8>) -> Self
Trait Implementations§
Source§impl Clone for AttributeRecord
 
impl Clone for AttributeRecord
Source§fn clone(&self) -> AttributeRecord
 
fn clone(&self) -> AttributeRecord
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 AttributeRecord
 
impl Debug for AttributeRecord
Source§impl Default for AttributeRecord
 
impl Default for AttributeRecord
Source§impl PartialEq for AttributeRecord
 
impl PartialEq for AttributeRecord
impl StructuralPartialEq for AttributeRecord
Auto Trait Implementations§
impl Freeze for AttributeRecord
impl RefUnwindSafe for AttributeRecord
impl Send for AttributeRecord
impl Sync for AttributeRecord
impl Unpin for AttributeRecord
impl UnwindSafe for AttributeRecord
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