pub struct WebPatchRun {
pub offset: u32,
pub cells: Vec<WebPatchCell>,
}Expand description
One contiguous run of changed cells starting at linear offset.
Fields§
§offset: u32§cells: Vec<WebPatchCell>Trait Implementations§
Source§impl Clone for WebPatchRun
impl Clone for WebPatchRun
Source§fn clone(&self) -> WebPatchRun
fn clone(&self) -> WebPatchRun
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 WebPatchRun
impl Debug for WebPatchRun
Source§impl PartialEq for WebPatchRun
impl PartialEq for WebPatchRun
impl Eq for WebPatchRun
impl StructuralPartialEq for WebPatchRun
Auto Trait Implementations§
impl Freeze for WebPatchRun
impl RefUnwindSafe for WebPatchRun
impl Send for WebPatchRun
impl Sync for WebPatchRun
impl Unpin for WebPatchRun
impl UnsafeUnpin for WebPatchRun
impl UnwindSafe for WebPatchRun
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.