pub enum StateProperties {
Task(TaskStateProps),
ChecklistItem(ChecklistItemStateProps),
Area(AreaStateProps),
Tag(TagStateProps),
Other,
}Variants§
Task(TaskStateProps)
ChecklistItem(ChecklistItemStateProps)
Area(AreaStateProps)
Tag(TagStateProps)
Other
Trait Implementations§
Source§impl Clone for StateProperties
impl Clone for StateProperties
Source§fn clone(&self) -> StateProperties
fn clone(&self) -> StateProperties
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 StateProperties
impl Debug for StateProperties
Source§impl<'de> Deserialize<'de> for StateProperties
impl<'de> Deserialize<'de> for StateProperties
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<Properties> for StateProperties
impl From<Properties> for StateProperties
Source§fn from(payload: Properties) -> Self
fn from(payload: Properties) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StateProperties
impl PartialEq for StateProperties
Source§impl Serialize for StateProperties
impl Serialize for StateProperties
impl StructuralPartialEq for StateProperties
Auto Trait Implementations§
impl Freeze for StateProperties
impl RefUnwindSafe for StateProperties
impl Send for StateProperties
impl Sync for StateProperties
impl Unpin for StateProperties
impl UnsafeUnpin for StateProperties
impl UnwindSafe for StateProperties
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