pub enum VCDiffReadMsg {
WindowSummary(WindowSummary),
Inst {
first: Inst,
second: Option<Inst>,
},
EndOfWindow,
EndOfFile,
}
Expand description
Represents the main messages that can be emitted by the Reader while processing a VCDIFF patch.
Variants§
Trait Implementations§
Source§impl Clone for VCDiffReadMsg
impl Clone for VCDiffReadMsg
Source§fn clone(&self) -> VCDiffReadMsg
fn clone(&self) -> VCDiffReadMsg
Returns a copy 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 VCDiffReadMsg
impl Debug for VCDiffReadMsg
Source§impl PartialEq for VCDiffReadMsg
impl PartialEq for VCDiffReadMsg
impl Eq for VCDiffReadMsg
impl StructuralPartialEq for VCDiffReadMsg
Auto Trait Implementations§
impl Freeze for VCDiffReadMsg
impl RefUnwindSafe for VCDiffReadMsg
impl Send for VCDiffReadMsg
impl Sync for VCDiffReadMsg
impl Unpin for VCDiffReadMsg
impl UnwindSafe for VCDiffReadMsg
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