#[non_exhaustive]pub enum StairStyle {
Pre,
Post,
}Expand description
Step direction for staircase plots.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Pre
Step transition occurs at the start of each interval.
Post
Step transition occurs at the end of each interval (default).
Trait Implementations§
Source§impl Clone for StairStyle
impl Clone for StairStyle
Source§fn clone(&self) -> StairStyle
fn clone(&self) -> StairStyle
Returns a duplicate 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 StairStyle
impl Debug for StairStyle
Source§impl Default for StairStyle
impl Default for StairStyle
Source§fn default() -> StairStyle
fn default() -> StairStyle
Returns the “default value” for a type. Read more
Source§impl PartialEq for StairStyle
impl PartialEq for StairStyle
impl Copy for StairStyle
impl Eq for StairStyle
impl StructuralPartialEq for StairStyle
Auto Trait Implementations§
impl Freeze for StairStyle
impl RefUnwindSafe for StairStyle
impl Send for StairStyle
impl Sync for StairStyle
impl Unpin for StairStyle
impl UnsafeUnpin for StairStyle
impl UnwindSafe for StairStyle
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