pub enum IntervalTime {
Minute5,
Minute15,
Minute30,
Hour1,
Hour4,
Day1,
}Variants§
Trait Implementations§
Source§impl Clone for IntervalTime
impl Clone for IntervalTime
Source§fn clone(&self) -> IntervalTime
fn clone(&self) -> IntervalTime
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 IntervalTime
Source§impl Debug for IntervalTime
impl Debug for IntervalTime
Source§impl<'de> Deserialize<'de> for IntervalTime
impl<'de> Deserialize<'de> for IntervalTime
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for IntervalTime
impl PartialEq for IntervalTime
Source§fn eq(&self, other: &IntervalTime) -> bool
fn eq(&self, other: &IntervalTime) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IntervalTime
impl Serialize for IntervalTime
impl StructuralPartialEq for IntervalTime
Auto Trait Implementations§
impl Freeze for IntervalTime
impl RefUnwindSafe for IntervalTime
impl Send for IntervalTime
impl Sync for IntervalTime
impl Unpin for IntervalTime
impl UnsafeUnpin for IntervalTime
impl UnwindSafe for IntervalTime
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