#[repr(u8)]
pub enum Stroke {
Hand,
Back,
}Expand description
Stroke of a row, i.e. handstroke (Stroke::Hand) or backstroke (Stroke::Back).
Variants
Hand
Back
Implementations
sourceimpl Stroke
impl Stroke
sourcepub fn offset(self, offset: usize) -> Stroke
pub fn offset(self, offset: usize) -> Stroke
Returns the Stroke which happens offset Rows after a given start
Stroke.
Example
use bellframe::Stroke;
assert_eq!(Stroke::Hand.offset(0), Stroke::Hand);
// The row after a backstroke is a handstroke
assert_eq!(Stroke::Back.offset(1), Stroke::Hand);
assert_eq!(Stroke::Hand.offset(1235124), Stroke::Hand); // Whoa lots of ringingsourcepub fn offset_i(self, offset: isize) -> Stroke
pub fn offset_i(self, offset: isize) -> Stroke
Returns the Stroke which happens offset Rows after (or before) self.
Example
use bellframe::Stroke;
assert_eq!(Stroke::Hand.offset_i(0), Stroke::Hand);
// The row after a backstroke is a handstroke
assert_eq!(Stroke::Back.offset_i(1), Stroke::Hand);
// The row before a backstroke is also a handstroke
assert_eq!(Stroke::Back.offset_i(-1), Stroke::Hand);
assert_eq!(Stroke::Hand.offset_i(1235124), Stroke::Hand); // Whoa lots of ringingTrait Implementations
sourceimpl Ord for Stroke
impl Ord for Stroke
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<Stroke> for Stroke
impl PartialOrd<Stroke> for Stroke
sourcefn partial_cmp(&self, other: &Stroke) -> Option<Ordering>
fn partial_cmp(&self, other: &Stroke) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for Stroke
impl Eq for Stroke
impl StructuralEq for Stroke
impl StructuralPartialEq for Stroke
Auto Trait Implementations
impl RefUnwindSafe for Stroke
impl Send for Stroke
impl Sync for Stroke
impl Unpin for Stroke
impl UnwindSafe for Stroke
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more