pub struct RL {
pub value: bool,
pub run: Range<usize>,
}
Expand description
A run length - a range of the same value repeated.
Fields§
§value: bool
§run: Range<usize>
Implementations§
Trait Implementations§
impl Eq for RL
impl StructuralPartialEq for RL
Auto Trait Implementations§
impl Freeze for RL
impl RefUnwindSafe for RL
impl Send for RL
impl Sync for RL
impl Unpin for RL
impl UnwindSafe for RL
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