pub enum PartitionKind {
Daily,
Hourly,
Weekly,
Monthly,
Dynamic,
}Expand description
Variants§
Trait Implementations§
Source§impl Clone for PartitionKind
impl Clone for PartitionKind
Source§fn clone(&self) -> PartitionKind
fn clone(&self) -> PartitionKind
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 PartitionKind
Source§impl Debug for PartitionKind
impl Debug for PartitionKind
Source§impl Default for PartitionKind
impl Default for PartitionKind
Source§fn default() -> PartitionKind
fn default() -> PartitionKind
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PartitionKind
impl<'de> Deserialize<'de> for PartitionKind
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
impl Eq for PartitionKind
Source§impl Hash for PartitionKind
impl Hash for PartitionKind
Source§impl Ord for PartitionKind
impl Ord for PartitionKind
Source§fn cmp(&self, other: &PartitionKind) -> Ordering
fn cmp(&self, other: &PartitionKind) -> Ordering
1.21.0 (const: unstable) · 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 PartitionKind
impl PartialEq for PartitionKind
Source§fn eq(&self, other: &PartitionKind) -> bool
fn eq(&self, other: &PartitionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PartitionKind
impl PartialOrd for PartitionKind
Source§impl Serialize for PartitionKind
impl Serialize for PartitionKind
impl StructuralPartialEq for PartitionKind
Auto Trait Implementations§
impl Freeze for PartitionKind
impl RefUnwindSafe for PartitionKind
impl Send for PartitionKind
impl Sync for PartitionKind
impl Unpin for PartitionKind
impl UnsafeUnpin for PartitionKind
impl UnwindSafe for PartitionKind
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