pub struct PatchResult {
pub affected_range: ByteRange,
pub reparse_required: bool,
}Expand description
Result of a successfully applied patch (RFC-015 §7).
Fields§
§affected_range: ByteRangeRange covered by the replacement text in the new document.
reparse_required: boolFull reparse is always required in the MVP strategy.
Trait Implementations§
Source§impl Clone for PatchResult
impl Clone for PatchResult
Source§fn clone(&self) -> PatchResult
fn clone(&self) -> PatchResult
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 PatchResult
impl Debug for PatchResult
Source§impl<'de> Deserialize<'de> for PatchResult
impl<'de> Deserialize<'de> for PatchResult
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
impl Eq for PatchResult
Source§impl PartialEq for PatchResult
impl PartialEq for PatchResult
Source§fn eq(&self, other: &PatchResult) -> bool
fn eq(&self, other: &PatchResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PatchResult
impl Serialize for PatchResult
impl StructuralPartialEq for PatchResult
Auto Trait Implementations§
impl Freeze for PatchResult
impl RefUnwindSafe for PatchResult
impl Send for PatchResult
impl Sync for PatchResult
impl Unpin for PatchResult
impl UnsafeUnpin for PatchResult
impl UnwindSafe for PatchResult
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