pub enum SymbolizeMode {
Off,
Pretty,
Classic,
}
Variants§
Off
Disable all symbolization
Pretty
Use prettified symbolization
Classic
Use classic (non-prettified) symbolization
Implementations§
Source§impl SymbolizeMode
impl SymbolizeMode
pub fn is_prettification_disabled(&self) -> bool
pub fn is_symbolize_disabled(&self) -> bool
Trait Implementations§
Source§impl Clone for SymbolizeMode
impl Clone for SymbolizeMode
Source§fn clone(&self) -> SymbolizeMode
fn clone(&self) -> SymbolizeMode
Returns a copy 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 SymbolizeMode
impl Debug for SymbolizeMode
Source§impl FromStr for SymbolizeMode
impl FromStr for SymbolizeMode
Source§impl PartialEq for SymbolizeMode
impl PartialEq for SymbolizeMode
impl StructuralPartialEq for SymbolizeMode
Auto Trait Implementations§
impl Freeze for SymbolizeMode
impl RefUnwindSafe for SymbolizeMode
impl Send for SymbolizeMode
impl Sync for SymbolizeMode
impl Unpin for SymbolizeMode
impl UnwindSafe for SymbolizeMode
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,
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> FromArgValue for T
impl<T> FromArgValue for T
§fn from_arg_value(value: &str) -> Result<T, String>
fn from_arg_value(value: &str) -> Result<T, String>
Construct the type from a commandline value, returning an error string
on failure.
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