pub struct AppliedText {
pub text: String,
pub edits_applied: usize,
pub bytes_before: usize,
pub bytes_after: usize,
}Expand description
Successful all-or-nothing in-memory application.
Fields§
§text: String§edits_applied: usize§bytes_before: usize§bytes_after: usizeTrait Implementations§
Source§impl Clone for AppliedText
impl Clone for AppliedText
Source§fn clone(&self) -> AppliedText
fn clone(&self) -> AppliedText
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 AppliedText
impl Debug for AppliedText
impl Eq for AppliedText
Source§impl PartialEq for AppliedText
impl PartialEq for AppliedText
impl StructuralPartialEq for AppliedText
Auto Trait Implementations§
impl Freeze for AppliedText
impl RefUnwindSafe for AppliedText
impl Send for AppliedText
impl Sync for AppliedText
impl Unpin for AppliedText
impl UnsafeUnpin for AppliedText
impl UnwindSafe for AppliedText
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