enum SubsecondDigits {
One,
Two,
Three,
Four,
Five,
Six,
Seven,
Eight,
Nine,
OneOrMore,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SubsecondDigits
impl Clone for SubsecondDigits
Source§fn clone(&self) -> SubsecondDigits
fn clone(&self) -> SubsecondDigits
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 Default for SubsecondDigits
impl Default for SubsecondDigits
Source§fn default() -> SubsecondDigits
fn default() -> SubsecondDigits
Returns the “default value” for a type. Read more
Source§impl From<SubsecondDigits> for SubsecondDigits
impl From<SubsecondDigits> for SubsecondDigits
Source§fn from(modifier: SubsecondDigits) -> Self
fn from(modifier: SubsecondDigits) -> Self
Converts to this type from the input type.
Source§impl ModifierValue for SubsecondDigits
impl ModifierValue for SubsecondDigits
type Type = SubsecondDigits
impl Copy for SubsecondDigits
Auto Trait Implementations§
impl Freeze for SubsecondDigits
impl RefUnwindSafe for SubsecondDigits
impl Send for SubsecondDigits
impl Sync for SubsecondDigits
impl Unpin for SubsecondDigits
impl UnsafeUnpin for SubsecondDigits
impl UnwindSafe for SubsecondDigits
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