pub struct OperationLabel<'a> {
pub header_offset: usize,
pub offset: usize,
pub value: &'a str,
pub object_indices: [Option<u32>; 4],
pub object_index_offsets: [usize; 4],
}Expand description
A feature operation name in a size-framed feature-history record area.
Fields§
§header_offset: usizeAbsolute offset of the fixed operation-header marker.
offset: usizeAbsolute offset of the 03 label tag within the containing entry.
value: &'a strPrintable operation name without its terminating NUL.
object_indices: [Option<u32>; 4]Four object-index slots in header order; None is the ff sentinel.
object_index_offsets: [usize; 4]Absolute byte offset of each object-index token in header order.
Trait Implementations§
Source§impl<'a> Clone for OperationLabel<'a>
impl<'a> Clone for OperationLabel<'a>
Source§fn clone(&self) -> OperationLabel<'a>
fn clone(&self) -> OperationLabel<'a>
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<'a> Copy for OperationLabel<'a>
Source§impl<'a> Debug for OperationLabel<'a>
impl<'a> Debug for OperationLabel<'a>
impl<'a> Eq for OperationLabel<'a>
Source§impl<'a> PartialEq for OperationLabel<'a>
impl<'a> PartialEq for OperationLabel<'a>
impl<'a> StructuralPartialEq for OperationLabel<'a>
Auto Trait Implementations§
impl<'a> Freeze for OperationLabel<'a>
impl<'a> RefUnwindSafe for OperationLabel<'a>
impl<'a> Send for OperationLabel<'a>
impl<'a> Sync for OperationLabel<'a>
impl<'a> Unpin for OperationLabel<'a>
impl<'a> UnsafeUnpin for OperationLabel<'a>
impl<'a> UnwindSafe for OperationLabel<'a>
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