#[repr(i32)]pub enum SecondaryMode {
Tag = 0,
Record = 1,
Omit = 2,
}Expand description
How secondary alignments are reported.
Variants§
Tag = 0
Encode secondary alignments in the XA tag of the primary record.
Record = 1
Emit secondary alignments as separate records with the SECONDARY flag.
Omit = 2
Do not report secondary alignments.
Trait Implementations§
Source§impl Clone for SecondaryMode
impl Clone for SecondaryMode
Source§fn clone(&self) -> SecondaryMode
fn clone(&self) -> SecondaryMode
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 SecondaryMode
impl Debug for SecondaryMode
Source§impl PartialEq for SecondaryMode
impl PartialEq for SecondaryMode
impl Copy for SecondaryMode
impl Eq for SecondaryMode
impl StructuralPartialEq for SecondaryMode
Auto Trait Implementations§
impl Freeze for SecondaryMode
impl RefUnwindSafe for SecondaryMode
impl Send for SecondaryMode
impl Sync for SecondaryMode
impl Unpin for SecondaryMode
impl UnsafeUnpin for SecondaryMode
impl UnwindSafe for SecondaryMode
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