pub struct StringNumber(/* private fields */);Expand description
A validated guitar string number in the range 1..=12.
String numbers follow guitar convention: string 1 is the highest-pitched (thinnest) string, and higher numbers designate lower-pitched strings.
Implementations§
Source§impl StringNumber
impl StringNumber
Sourcepub const MAX: u8 = 12
pub const MAX: u8 = 12
Upper bound enforced by StringNumber::new.
Sourcepub fn new(string_number: u8) -> Result<Self, TabError>
pub fn new(string_number: u8) -> Result<Self, TabError>
Constructs a StringNumber after validating that string_number is in 1..=MAX.
§Errors
Returns TabError::StringNumberOutOfRange if string_number is 0 or exceeds
StringNumber::MAX.
Trait Implementations§
Source§impl Clone for StringNumber
impl Clone for StringNumber
Source§fn clone(&self) -> StringNumber
fn clone(&self) -> StringNumber
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 moreimpl Copy for StringNumber
Source§impl Debug for StringNumber
impl Debug for StringNumber
impl Eq for StringNumber
Source§impl Hash for StringNumber
impl Hash for StringNumber
Source§impl Ord for StringNumber
impl Ord for StringNumber
Source§fn cmp(&self, other: &StringNumber) -> Ordering
fn cmp(&self, other: &StringNumber) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StringNumber
impl PartialEq for StringNumber
Source§fn eq(&self, other: &StringNumber) -> bool
fn eq(&self, other: &StringNumber) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for StringNumber
impl PartialOrd for StringNumber
impl StructuralPartialEq for StringNumber
Auto Trait Implementations§
impl Freeze for StringNumber
impl RefUnwindSafe for StringNumber
impl Send for StringNumber
impl Sync for StringNumber
impl Unpin for StringNumber
impl UnsafeUnpin for StringNumber
impl UnwindSafe for StringNumber
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> CallHasher for T
impl<T> CallHasher for T
Source§impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
Source§fn try_cast_approx(self) -> Result<T, Error>
fn try_cast_approx(self) -> Result<T, Error>
Source§fn cast_approx(self) -> T
fn cast_approx(self) -> T
Source§impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
Source§fn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
Source§fn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
Source§fn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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