Struct a2lfile::TypedefBlob
source · pub struct TypedefBlob {
pub name: String,
pub long_identifier: String,
pub size: u32,
pub address_type: Option<AddressType>,
/* private fields */
}Expand description
Type definition of a BLOB
Fields§
§name: String§long_identifier: String§size: u32§address_type: Option<AddressType>Implementations§
Trait Implementations§
source§impl A2lObject<(u32, u32, (u32, bool))> for TypedefBlob
impl A2lObject<(u32, u32, (u32, bool))> for TypedefBlob
source§fn get_layout(&self) -> &BlockInfo<(u32, u32, (u32, bool))>
fn get_layout(&self) -> &BlockInfo<(u32, u32, (u32, bool))>
get a reference to the BlockInfo that describes the layout of the a2l object
source§fn get_layout_mut(&mut self) -> &mut BlockInfo<(u32, u32, (u32, bool))>
fn get_layout_mut(&mut self) -> &mut BlockInfo<(u32, u32, (u32, bool))>
get a mutable reference to the BlockInfo that describes the layout of the a2l object
source§fn reset_location(&mut self)
fn reset_location(&mut self)
reset the location information on the a2l object. It will be treated like a new object when writing a file
source§fn merge_includes(&mut self)
fn merge_includes(&mut self)
reset the reference to an include file on this objct and its children.
This causes the object to be written into the output file instead of referenced through /include “filename”
source§impl A2lObjectName for TypedefBlob
impl A2lObjectName for TypedefBlob
source§impl Clone for TypedefBlob
impl Clone for TypedefBlob
source§fn clone(&self) -> TypedefBlob
fn clone(&self) -> TypedefBlob
Returns a copy 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 TypedefBlob
impl Debug for TypedefBlob
source§impl PartialEq<TypedefBlob> for TypedefBlob
impl PartialEq<TypedefBlob> for TypedefBlob
Auto Trait Implementations§
impl RefUnwindSafe for TypedefBlob
impl Send for TypedefBlob
impl Sync for TypedefBlob
impl Unpin for TypedefBlob
impl UnwindSafe for TypedefBlob
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