pub enum StringDelta {
Set(String),
Append(String),
}Variants§
Trait Implementations§
Source§impl Clone for StringDelta
impl Clone for StringDelta
Source§fn clone(&self) -> StringDelta
fn clone(&self) -> StringDelta
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 DeltaStruct<StringDelta> for String
impl DeltaStruct<StringDelta> for String
fn apply(&mut self, delta: &StringDelta)
Auto Trait Implementations§
impl Freeze for StringDelta
impl RefUnwindSafe for StringDelta
impl Send for StringDelta
impl Sync for StringDelta
impl Unpin for StringDelta
impl UnwindSafe for StringDelta
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