pub enum FrequencyPercentage {
Frequency(Frequency),
Percentage(Percentage),
}Variants§
Frequency(Frequency)
Percentage(Percentage)
Implementations§
Source§impl FrequencyPercentage
impl FrequencyPercentage
Sourcepub const fn is_frequency(&self) -> bool
pub const fn is_frequency(&self) -> bool
Returns true if self is of variant Frequency.
Sourcepub fn as_frequency(&self) -> Option<&Frequency>
pub fn as_frequency(&self) -> Option<&Frequency>
Returns Some if self is a reference of variant Frequency, and None otherwise.
Sourcepub fn as_mut_frequency(&mut self) -> Option<&mut Frequency>
pub fn as_mut_frequency(&mut self) -> Option<&mut Frequency>
Returns Some if self is a mutable reference of variant Frequency, and None otherwise.
Sourcepub fn expect_frequency(self) -> Frequencywhere
Self: Debug,
pub fn expect_frequency(self) -> Frequencywhere
Self: Debug,
Sourcepub fn frequency(self) -> Option<Frequency>
pub fn frequency(self) -> Option<Frequency>
Returns Some if self is of variant Frequency, and None otherwise.
Sourcepub const fn is_percentage(&self) -> bool
pub const fn is_percentage(&self) -> bool
Returns true if self is of variant Percentage.
Sourcepub fn as_percentage(&self) -> Option<&Percentage>
pub fn as_percentage(&self) -> Option<&Percentage>
Returns Some if self is a reference of variant Percentage, and None otherwise.
Sourcepub fn as_mut_percentage(&mut self) -> Option<&mut Percentage>
pub fn as_mut_percentage(&mut self) -> Option<&mut Percentage>
Returns Some if self is a mutable reference of variant Percentage, and None otherwise.
Sourcepub fn expect_percentage(self) -> Percentagewhere
Self: Debug,
pub fn expect_percentage(self) -> Percentagewhere
Self: Debug,
Unwraps the value, yielding the content of Percentage.
§Panics
Panics if the value is not Percentage, with a panic message including the content of self.
Sourcepub fn percentage(self) -> Option<Percentage>
pub fn percentage(self) -> Option<Percentage>
Returns Some if self is of variant Percentage, and None otherwise.
Trait Implementations§
Source§impl Clone for FrequencyPercentage
impl Clone for FrequencyPercentage
Source§fn clone(&self) -> FrequencyPercentage
fn clone(&self) -> FrequencyPercentage
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 FrequencyPercentage
impl Debug for FrequencyPercentage
Source§impl EqIgnoreSpan for FrequencyPercentage
impl EqIgnoreSpan for FrequencyPercentage
fn eq_ignore_span(&self, other: &Self) -> bool
Source§impl From<Frequency> for FrequencyPercentage
impl From<Frequency> for FrequencyPercentage
Source§impl From<Percentage> for FrequencyPercentage
impl From<Percentage> for FrequencyPercentage
Source§fn from(v: Percentage) -> Self
fn from(v: Percentage) -> Self
Converts to this type from the input type.
Source§impl Hash for FrequencyPercentage
impl Hash for FrequencyPercentage
Source§impl PartialEq for FrequencyPercentage
impl PartialEq for FrequencyPercentage
Source§impl Spanned for FrequencyPercentage
impl Spanned for FrequencyPercentage
impl Eq for FrequencyPercentage
impl StructuralPartialEq for FrequencyPercentage
Auto Trait Implementations§
impl Freeze for FrequencyPercentage
impl RefUnwindSafe for FrequencyPercentage
impl Send for FrequencyPercentage
impl Sync for FrequencyPercentage
impl Unpin for FrequencyPercentage
impl UnwindSafe for FrequencyPercentage
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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