pub enum ScheduleScope {
All,
Space {
space: String,
},
Collections {
space: String,
collections: Vec<String>,
},
}Variants§
Trait Implementations§
Source§impl Clone for ScheduleScope
impl Clone for ScheduleScope
Source§fn clone(&self) -> ScheduleScope
fn clone(&self) -> ScheduleScope
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 moreSource§impl Debug for ScheduleScope
impl Debug for ScheduleScope
Source§impl<'de> Deserialize<'de> for ScheduleScope
impl<'de> Deserialize<'de> for ScheduleScope
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 ScheduleScope
impl PartialEq for ScheduleScope
Source§fn eq(&self, other: &ScheduleScope) -> bool
fn eq(&self, other: &ScheduleScope) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScheduleScope
impl Serialize for ScheduleScope
impl Eq for ScheduleScope
impl StructuralPartialEq for ScheduleScope
Auto Trait Implementations§
impl Freeze for ScheduleScope
impl RefUnwindSafe for ScheduleScope
impl Send for ScheduleScope
impl Sync for ScheduleScope
impl Unpin for ScheduleScope
impl UnsafeUnpin for ScheduleScope
impl UnwindSafe for ScheduleScope
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