pub enum Properties {
Show 13 variants
TaskCreate(TaskProps),
TaskUpdate(TaskPatch),
ChecklistCreate(ChecklistItemProps),
ChecklistUpdate(ChecklistItemPatch),
TagCreate(TagProps),
TagUpdate(TagPatch),
AreaCreate(AreaProps),
AreaUpdate(AreaPatch),
TombstoneCreate(TombstoneProps),
CommandCreate(CommandProps),
Delete,
Ignored(BTreeMap<String, Value>),
Unknown(BTreeMap<String, Value>),
}Variants§
TaskCreate(TaskProps)
TaskUpdate(TaskPatch)
ChecklistCreate(ChecklistItemProps)
ChecklistUpdate(ChecklistItemPatch)
TagCreate(TagProps)
TagUpdate(TagPatch)
AreaCreate(AreaProps)
AreaUpdate(AreaPatch)
TombstoneCreate(TombstoneProps)
CommandCreate(CommandProps)
Delete
Ignored(BTreeMap<String, Value>)
Known entity families we intentionally skip materializing in store state.
Unknown(BTreeMap<String, Value>)
Unknown/unsupported entity payload preserved for forward compatibility.
Trait Implementations§
Source§impl Clone for Properties
impl Clone for Properties
Source§fn clone(&self) -> Properties
fn clone(&self) -> Properties
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 Properties
impl Debug for Properties
Source§impl From<AreaPatch> for Properties
impl From<AreaPatch> for Properties
Source§impl From<AreaProps> for Properties
impl From<AreaProps> for Properties
Source§impl From<ChecklistItemPatch> for Properties
impl From<ChecklistItemPatch> for Properties
Source§fn from(value: ChecklistItemPatch) -> Self
fn from(value: ChecklistItemPatch) -> Self
Converts to this type from the input type.
Source§impl From<ChecklistItemProps> for Properties
impl From<ChecklistItemProps> for Properties
Source§fn from(value: ChecklistItemProps) -> Self
fn from(value: ChecklistItemProps) -> Self
Converts to this type from the input type.
Source§impl From<CommandProps> for Properties
impl From<CommandProps> for Properties
Source§fn from(value: CommandProps) -> Self
fn from(value: CommandProps) -> Self
Converts to this type from the input type.
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 From<TagPatch> for Properties
impl From<TagPatch> for Properties
Source§impl From<TagProps> for Properties
impl From<TagProps> for Properties
Source§impl From<TaskPatch> for Properties
impl From<TaskPatch> for Properties
Source§impl From<TaskProps> for Properties
impl From<TaskProps> for Properties
Source§impl From<TombstoneProps> for Properties
impl From<TombstoneProps> for Properties
Source§fn from(value: TombstoneProps) -> Self
fn from(value: TombstoneProps) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Properties
impl PartialEq for Properties
impl StructuralPartialEq for Properties
Auto Trait Implementations§
impl Freeze for Properties
impl RefUnwindSafe for Properties
impl Send for Properties
impl Sync for Properties
impl Unpin for Properties
impl UnsafeUnpin for Properties
impl UnwindSafe for Properties
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