pub enum HistoryKind {
Timestamp,
Pkgpath,
Pkgname,
Pkgbase,
Outcome,
Stage,
MakeJobs,
Duration,
DiskUsage,
Wrkobjdir,
BuildId,
}Expand description
Variants§
Implementations§
Source§impl HistoryKind
impl HistoryKind
Sourcepub fn all_columns() -> Vec<(String, Align)>
pub fn all_columns() -> Vec<(String, Align)>
All valid column names with alignment.
Sourcepub fn default_names() -> Vec<&'static str>
pub fn default_names() -> Vec<&'static str>
Column names shown by default.
Sourcepub fn after_help() -> String
pub fn after_help() -> String
Generate the after_long_help text for bob history.
Trait Implementations§
Source§impl Clone for HistoryKind
impl Clone for HistoryKind
Source§fn clone(&self) -> HistoryKind
fn clone(&self) -> HistoryKind
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 moreSource§impl ColumnAlign for HistoryKind
Alignment from per-variant align props.
impl ColumnAlign for HistoryKind
Alignment from per-variant align props.
Source§impl Debug for HistoryKind
impl Debug for HistoryKind
Source§impl EnumMessage for HistoryKind
impl EnumMessage for HistoryKind
fn get_message(&self) -> Option<&'static str>
fn get_detailed_message(&self) -> Option<&'static str>
Source§fn get_documentation(&self) -> Option<&'static str>
fn get_documentation(&self) -> Option<&'static str>
Get the doc comment associated with a variant if it exists.
fn get_serializations(&self) -> &'static [&'static str]
Source§impl EnumProperty for HistoryKind
impl EnumProperty for HistoryKind
Source§impl<'_derivative_strum> From<&'_derivative_strum HistoryKind> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum HistoryKind> for &'static str
Source§fn from(x: &'_derivative_strum HistoryKind) -> &'static str
fn from(x: &'_derivative_strum HistoryKind) -> &'static str
Converts to this type from the input type.
Source§impl From<HistoryKind> for &'static str
impl From<HistoryKind> for &'static str
Source§fn from(x: HistoryKind) -> &'static str
fn from(x: HistoryKind) -> &'static str
Converts to this type from the input type.
Source§impl PartialEq for HistoryKind
impl PartialEq for HistoryKind
Source§fn eq(&self, other: &HistoryKind) -> bool
fn eq(&self, other: &HistoryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl VariantArray for HistoryKind
impl VariantArray for HistoryKind
impl Copy for HistoryKind
impl Eq for HistoryKind
impl StructuralPartialEq for HistoryKind
Auto Trait Implementations§
impl Freeze for HistoryKind
impl RefUnwindSafe for HistoryKind
impl Send for HistoryKind
impl Sync for HistoryKind
impl Unpin for HistoryKind
impl UnsafeUnpin for HistoryKind
impl UnwindSafe for HistoryKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more