pub struct SegmentIndexRow {
pub type_code: u32,
pub subtype_code: u32,
pub value: u32,
}Expand description
One 12-byte row in the canonical UG_PART segment index.
Fields§
§type_code: u32First little-endian row word.
subtype_code: u32Second little-endian row word.
value: u32Third little-endian row word.
Trait Implementations§
Source§impl Clone for SegmentIndexRow
impl Clone for SegmentIndexRow
Source§fn clone(&self) -> SegmentIndexRow
fn clone(&self) -> SegmentIndexRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SegmentIndexRow
Source§impl Debug for SegmentIndexRow
impl Debug for SegmentIndexRow
impl Eq for SegmentIndexRow
Source§impl PartialEq for SegmentIndexRow
impl PartialEq for SegmentIndexRow
impl StructuralPartialEq for SegmentIndexRow
Auto Trait Implementations§
impl Freeze for SegmentIndexRow
impl RefUnwindSafe for SegmentIndexRow
impl Send for SegmentIndexRow
impl Sync for SegmentIndexRow
impl Unpin for SegmentIndexRow
impl UnsafeUnpin for SegmentIndexRow
impl UnwindSafe for SegmentIndexRow
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