pub enum DeltaSource {
Node {
node_id: String,
},
Hook {
node_id: String,
hook_name: String,
},
ReducerMerge,
ResumeReplay,
}Expand description
Delta 来源 — 追踪谁产生了这个修改。
Variants§
Trait Implementations§
Source§impl Clone for DeltaSource
impl Clone for DeltaSource
Source§fn clone(&self) -> DeltaSource
fn clone(&self) -> DeltaSource
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 DeltaSource
impl Debug for DeltaSource
Source§impl<'de> Deserialize<'de> for DeltaSource
impl<'de> Deserialize<'de> for DeltaSource
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 Display for DeltaSource
impl Display for DeltaSource
Auto Trait Implementations§
impl Freeze for DeltaSource
impl RefUnwindSafe for DeltaSource
impl Send for DeltaSource
impl Sync for DeltaSource
impl Unpin for DeltaSource
impl UnsafeUnpin for DeltaSource
impl UnwindSafe for DeltaSource
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