pub enum FacetLabeller {
Value,
Both,
Custom(fn(&str, &str) -> String),
}Expand description
How facet strip labels are formatted.
Variants§
Value
Show just the value (default).
Both
Show “var: value”.
Custom(fn(&str, &str) -> String)
Custom formatting function: fn(variable_name, value) -> label.
Implementations§
Trait Implementations§
Source§impl Clone for FacetLabeller
impl Clone for FacetLabeller
Source§fn clone(&self) -> FacetLabeller
fn clone(&self) -> FacetLabeller
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 Default for FacetLabeller
impl Default for FacetLabeller
Source§fn default() -> FacetLabeller
fn default() -> FacetLabeller
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FacetLabeller
impl RefUnwindSafe for FacetLabeller
impl Send for FacetLabeller
impl Sync for FacetLabeller
impl Unpin for FacetLabeller
impl UnsafeUnpin for FacetLabeller
impl UnwindSafe for FacetLabeller
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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