pub struct OpaqueDiff {
pub byte_index: usize,
pub old_byte_length: usize,
pub new_byte_length: usize,
pub char_index: usize,
pub old_char_length: usize,
pub new_char_length: usize,
}Fields§
§byte_index: usize§old_byte_length: usize§new_byte_length: usize§char_index: usize§old_char_length: usize§new_char_length: usizeImplementations§
Trait Implementations§
Source§impl Clone for OpaqueDiff
impl Clone for OpaqueDiff
Source§fn clone(&self) -> OpaqueDiff
fn clone(&self) -> OpaqueDiff
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 OpaqueDiff
impl Debug for OpaqueDiff
Source§impl PartialEq for OpaqueDiff
impl PartialEq for OpaqueDiff
impl StructuralPartialEq for OpaqueDiff
Auto Trait Implementations§
impl Freeze for OpaqueDiff
impl RefUnwindSafe for OpaqueDiff
impl Send for OpaqueDiff
impl Sync for OpaqueDiff
impl Unpin for OpaqueDiff
impl UnwindSafe for OpaqueDiff
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