#[repr(C)]pub struct MS3RecordList {
pub recordcnt: u64,
pub first: *mut MS3RecordPtr,
pub last: *mut MS3RecordPtr,
}Expand description
@brief Record list, holds ::MS3RecordPtr entries that contribute to a given ::MS3TraceSeg
Fields§
§recordcnt: u64!< Count of records in the list (for convenience)
first: *mut MS3RecordPtr!< Pointer to first entry, NULL if the none
last: *mut MS3RecordPtr!< Pointer to last entry, NULL if the none
Trait Implementations§
Source§impl Clone for MS3RecordList
impl Clone for MS3RecordList
Source§fn clone(&self) -> MS3RecordList
fn clone(&self) -> MS3RecordList
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 MS3RecordList
impl Debug for MS3RecordList
impl Copy for MS3RecordList
Auto Trait Implementations§
impl Freeze for MS3RecordList
impl RefUnwindSafe for MS3RecordList
impl !Send for MS3RecordList
impl !Sync for MS3RecordList
impl Unpin for MS3RecordList
impl UnwindSafe for MS3RecordList
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