pub struct ReadingSplit {
pub shown: Vec<HunkId>,
pub deferred: Vec<HunkId>,
pub deferral: Deferral,
}Expand description
One group split into what to read and what to defer.
Both halves are in class order (class_ids order, then hunk_ids order
within a class), which is the order both renderers already emitted.
Fields§
§shown: Vec<HunkId>§deferred: Vec<HunkId>§deferral: DeferralImplementations§
Trait Implementations§
Source§impl Clone for ReadingSplit
impl Clone for ReadingSplit
Source§impl Debug for ReadingSplit
impl Debug for ReadingSplit
impl Eq for ReadingSplit
Source§impl PartialEq for ReadingSplit
impl PartialEq for ReadingSplit
impl StructuralPartialEq for ReadingSplit
Auto Trait Implementations§
impl Freeze for ReadingSplit
impl RefUnwindSafe for ReadingSplit
impl Send for ReadingSplit
impl Sync for ReadingSplit
impl Unpin for ReadingSplit
impl UnsafeUnpin for ReadingSplit
impl UnwindSafe for ReadingSplit
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§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.