pub struct ApplyIncomingResult {
pub applied_count: usize,
}Expand description
Result of a successful Workspace::apply_incoming call.
Fields§
§applied_count: usizeNumber of versions fast-forwarded into the local variation.
Trait Implementations§
Source§impl Clone for ApplyIncomingResult
impl Clone for ApplyIncomingResult
Source§fn clone(&self) -> ApplyIncomingResult
fn clone(&self) -> ApplyIncomingResult
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 ApplyIncomingResult
impl Debug for ApplyIncomingResult
Source§impl<'de> Deserialize<'de> for ApplyIncomingResult
impl<'de> Deserialize<'de> for ApplyIncomingResult
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 ApplyIncomingResult
impl RefUnwindSafe for ApplyIncomingResult
impl Send for ApplyIncomingResult
impl Sync for ApplyIncomingResult
impl Unpin for ApplyIncomingResult
impl UnsafeUnpin for ApplyIncomingResult
impl UnwindSafe for ApplyIncomingResult
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