pub struct SynchronizationCapability {
pub did_save: Option<bool>,
pub will_save: Option<bool>,
}Expand description
Synchronization capability
Fields§
§did_save: Option<bool>Whether the client supports incremental synchronization
will_save: Option<bool>Whether the client supports full document synchronization
Trait Implementations§
Source§impl Clone for SynchronizationCapability
impl Clone for SynchronizationCapability
Source§fn clone(&self) -> SynchronizationCapability
fn clone(&self) -> SynchronizationCapability
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 SynchronizationCapability
impl Debug for SynchronizationCapability
Source§impl<'de> Deserialize<'de> for SynchronizationCapability
impl<'de> Deserialize<'de> for SynchronizationCapability
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 SynchronizationCapability
impl RefUnwindSafe for SynchronizationCapability
impl Send for SynchronizationCapability
impl Sync for SynchronizationCapability
impl Unpin for SynchronizationCapability
impl UnwindSafe for SynchronizationCapability
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