pub enum TimerCalendarBase {
OnCalendar,
}
Expand description
A calender timer base.
Variants§
OnCalendar
Trait Implementations§
Source§impl Clone for TimerCalendarBase
impl Clone for TimerCalendarBase
Source§fn clone(&self) -> TimerCalendarBase
fn clone(&self) -> TimerCalendarBase
Returns a copy 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 TimerCalendarBase
impl Debug for TimerCalendarBase
Source§impl<'de> Deserialize<'de> for TimerCalendarBase
impl<'de> Deserialize<'de> for TimerCalendarBase
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 From<&TimerCalendarBase> for &str
impl From<&TimerCalendarBase> for &str
Source§fn from(s: &TimerCalendarBase) -> Self
fn from(s: &TimerCalendarBase) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a TimerCalendarBase> for OwnedValue
impl<'a> From<&'a TimerCalendarBase> for OwnedValue
Source§fn from(value: &'a TimerCalendarBase) -> Self
fn from(value: &'a TimerCalendarBase) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a TimerCalendarBase> for Value<'a>
impl<'a> From<&'a TimerCalendarBase> for Value<'a>
Source§fn from(value: &'a TimerCalendarBase) -> Self
fn from(value: &'a TimerCalendarBase) -> Self
Converts to this type from the input type.
Source§impl From<TimerCalendarBase> for &str
impl From<TimerCalendarBase> for &str
Source§fn from(m: TimerCalendarBase) -> Self
fn from(m: TimerCalendarBase) -> Self
Converts to this type from the input type.
Source§impl From<TimerCalendarBase> for OwnedValue
impl From<TimerCalendarBase> for OwnedValue
Source§fn from(value: TimerCalendarBase) -> Self
fn from(value: TimerCalendarBase) -> Self
Converts to this type from the input type.
Source§impl<'a> From<TimerCalendarBase> for Value<'a>
impl<'a> From<TimerCalendarBase> for Value<'a>
Source§fn from(value: TimerCalendarBase) -> Self
fn from(value: TimerCalendarBase) -> Self
Converts to this type from the input type.
Source§impl FromStr for TimerCalendarBase
impl FromStr for TimerCalendarBase
Source§impl Ord for TimerCalendarBase
impl Ord for TimerCalendarBase
Source§fn cmp(&self, other: &TimerCalendarBase) -> Ordering
fn cmp(&self, other: &TimerCalendarBase) -> Ordering
1.21.0 · 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 TimerCalendarBase
impl PartialEq for TimerCalendarBase
Source§impl PartialOrd for TimerCalendarBase
impl PartialOrd for TimerCalendarBase
Source§impl Serialize for TimerCalendarBase
impl Serialize for TimerCalendarBase
Source§impl TryFrom<OwnedValue> for TimerCalendarBase
impl TryFrom<OwnedValue> for TimerCalendarBase
Source§impl<'a> TryFrom<Value<'a>> for TimerCalendarBase
impl<'a> TryFrom<Value<'a>> for TimerCalendarBase
Source§impl Type for TimerCalendarBase
impl Type for TimerCalendarBase
impl Copy for TimerCalendarBase
impl Eq for TimerCalendarBase
impl StructuralPartialEq for TimerCalendarBase
Auto Trait Implementations§
impl Freeze for TimerCalendarBase
impl RefUnwindSafe for TimerCalendarBase
impl Send for TimerCalendarBase
impl Sync for TimerCalendarBase
impl Unpin for TimerCalendarBase
impl UnwindSafe for TimerCalendarBase
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<'de, T> DynamicDeserialize<'de> for Twhere
T: Type + Deserialize<'de>,
impl<'de, T> DynamicDeserialize<'de> for Twhere
T: Type + Deserialize<'de>,
Source§type Deserializer = PhantomData<T>
type Deserializer = PhantomData<T>
A DeserializeSeed implementation for this type.
Source§fn deserializer_for_signature(
signature: &Signature,
) -> Result<<T as DynamicDeserialize<'de>>::Deserializer, Error>
fn deserializer_for_signature( signature: &Signature, ) -> Result<<T as DynamicDeserialize<'de>>::Deserializer, Error>
Get a deserializer compatible with this parsed signature.