pub enum SupportedTimes {
NotSupported,
Time(u16),
}
Variants§
Trait Implementations§
Source§impl Clone for SupportedTimes
impl Clone for SupportedTimes
Source§fn clone(&self) -> SupportedTimes
fn clone(&self) -> SupportedTimes
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 SupportedTimes
impl Debug for SupportedTimes
Source§impl From<SupportedTimes> for u16
impl From<SupportedTimes> for u16
Source§fn from(value: SupportedTimes) -> u16
fn from(value: SupportedTimes) -> u16
Converts to this type from the input type.
Source§impl From<u16> for SupportedTimes
impl From<u16> for SupportedTimes
Source§impl PartialEq for SupportedTimes
impl PartialEq for SupportedTimes
impl Copy for SupportedTimes
impl StructuralPartialEq for SupportedTimes
Auto Trait Implementations§
impl Freeze for SupportedTimes
impl RefUnwindSafe for SupportedTimes
impl Send for SupportedTimes
impl Sync for SupportedTimes
impl Unpin for SupportedTimes
impl UnwindSafe for SupportedTimes
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