pub enum OutputTree {
Posix,
Right,
}Expand description
Output-tree profile of this run (T12.2; typed at T17.2 — was &'static str). posix = no leap
table applied; right = a leap table (-L) was applied. This is an output-identity claim a
reproducer/report reader relies on, so it is owned by the enum, not a literal.
Variants§
Posix
No leap table (the default / posix profile).
Right
A leap table was applied (the right/ profile).
Implementations§
Trait Implementations§
Source§impl Clone for OutputTree
impl Clone for OutputTree
Source§fn clone(&self) -> OutputTree
fn clone(&self) -> OutputTree
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 OutputTree
Source§impl Debug for OutputTree
impl Debug for OutputTree
impl Eq for OutputTree
Source§impl PartialEq for OutputTree
impl PartialEq for OutputTree
Source§fn eq(&self, other: &OutputTree) -> bool
fn eq(&self, other: &OutputTree) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OutputTree
Auto Trait Implementations§
impl Freeze for OutputTree
impl RefUnwindSafe for OutputTree
impl Send for OutputTree
impl Sync for OutputTree
impl Unpin for OutputTree
impl UnsafeUnpin for OutputTree
impl UnwindSafe for OutputTree
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