pub enum FacetSpace {
Fixed,
FreeX,
FreeY,
Free,
}Expand description
Whether facet panels are sized proportionally to their data range
(R’s space =). Fixed = equal-size panels (default).
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FacetSpace
impl Clone for FacetSpace
Source§fn clone(&self) -> FacetSpace
fn clone(&self) -> FacetSpace
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 Debug for FacetSpace
impl Debug for FacetSpace
Source§impl Default for FacetSpace
impl Default for FacetSpace
Source§fn default() -> FacetSpace
fn default() -> FacetSpace
Returns the “default value” for a type. Read more
Source§impl PartialEq for FacetSpace
impl PartialEq for FacetSpace
Source§fn eq(&self, other: &FacetSpace) -> bool
fn eq(&self, other: &FacetSpace) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FacetSpace
Auto Trait Implementations§
impl Freeze for FacetSpace
impl RefUnwindSafe for FacetSpace
impl Send for FacetSpace
impl Sync for FacetSpace
impl Unpin for FacetSpace
impl UnsafeUnpin for FacetSpace
impl UnwindSafe for FacetSpace
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