pub enum RemoveItem<T> {
Remove(Range<T>),
Absent(Range<T>),
}Expand description
区間を削除したときに触った各部分区間の状態を表す
Variants§
Trait Implementations§
Source§impl<T: Clone> Clone for RemoveItem<T>
impl<T: Clone> Clone for RemoveItem<T>
Source§fn clone(&self) -> RemoveItem<T>
fn clone(&self) -> RemoveItem<T>
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<T: Debug> Debug for RemoveItem<T>
impl<T: Debug> Debug for RemoveItem<T>
Source§impl<T: PartialEq> PartialEq for RemoveItem<T>
impl<T: PartialEq> PartialEq for RemoveItem<T>
impl<T: Eq> Eq for RemoveItem<T>
impl<T> StructuralPartialEq for RemoveItem<T>
Auto Trait Implementations§
impl<T> Freeze for RemoveItem<T>where
T: Freeze,
impl<T> RefUnwindSafe for RemoveItem<T>where
T: RefUnwindSafe,
impl<T> Send for RemoveItem<T>where
T: Send,
impl<T> Sync for RemoveItem<T>where
T: Sync,
impl<T> Unpin for RemoveItem<T>where
T: Unpin,
impl<T> UnsafeUnpin for RemoveItem<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for RemoveItem<T>where
T: UnwindSafe,
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