pub struct DeltaNotification {
pub item_id: Option<String>,
pub delta: Option<String>,
pub text: Option<String>,
pub summary_index: Option<u64>,
pub extra: Map<String, Value>,
}Fields§
§item_id: Option<String>§delta: Option<String>§text: Option<String>§summary_index: Option<u64>§extra: Map<String, Value>Trait Implementations§
Source§impl Clone for DeltaNotification
impl Clone for DeltaNotification
Source§fn clone(&self) -> DeltaNotification
fn clone(&self) -> DeltaNotification
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 DeltaNotification
impl Debug for DeltaNotification
Source§impl Default for DeltaNotification
impl Default for DeltaNotification
Source§fn default() -> DeltaNotification
fn default() -> DeltaNotification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeltaNotification
impl<'de> Deserialize<'de> for DeltaNotification
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
Auto Trait Implementations§
impl Freeze for DeltaNotification
impl RefUnwindSafe for DeltaNotification
impl Send for DeltaNotification
impl Sync for DeltaNotification
impl Unpin for DeltaNotification
impl UnsafeUnpin for DeltaNotification
impl UnwindSafe for DeltaNotification
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