Struct dis_rs::PaddedRecordLengths
source · pub struct PaddedRecordLengths {
pub data_length_bytes: usize,
pub padding_length_bytes: usize,
pub record_length_bytes: usize,
}Expand description
Struct to hold the length in bytes of parts of a padded record.
data_length_bytes + padding_length_bytes = record_length_bytes.
Fields§
§data_length_bytes: usize§padding_length_bytes: usize§record_length_bytes: usizeImplementations§
Auto Trait Implementations§
impl RefUnwindSafe for PaddedRecordLengths
impl Send for PaddedRecordLengths
impl Sync for PaddedRecordLengths
impl Unpin for PaddedRecordLengths
impl UnwindSafe for PaddedRecordLengths
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