pub struct ListPriorityRange { /* private fields */ }
Expand description
Determining the priority of a list request is tricky. We want
the priority to be the top-level row. So if we have a
list<list
This structure allows us to keep track of this complicated priority relationship.
There’s a fair amount of bookkeeping involved here.
A better approach (using repetition levels) is coming in the future.
Trait Implementations§
Source§impl Debug for ListPriorityRange
impl Debug for ListPriorityRange
Source§impl PriorityRange for ListPriorityRange
impl PriorityRange for ListPriorityRange
Auto Trait Implementations§
impl Freeze for ListPriorityRange
impl !RefUnwindSafe for ListPriorityRange
impl Send for ListPriorityRange
impl Sync for ListPriorityRange
impl Unpin for ListPriorityRange
impl !UnwindSafe for ListPriorityRange
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more