pub enum CapturePart {
Head(usize),
Tail(usize),
HeadTail(usize),
}Variants§
Trait Implementations§
Source§impl Clone for CapturePart
impl Clone for CapturePart
Source§fn clone(&self) -> CapturePart
fn clone(&self) -> CapturePart
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 CapturePart
impl Debug for CapturePart
Source§impl<'de> Deserialize<'de> for CapturePart
impl<'de> Deserialize<'de> for CapturePart
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CapturePart
impl PartialEq for CapturePart
Source§impl Serialize for CapturePart
impl Serialize for CapturePart
impl Eq for CapturePart
impl StructuralPartialEq for CapturePart
Auto Trait Implementations§
impl Freeze for CapturePart
impl RefUnwindSafe for CapturePart
impl Send for CapturePart
impl Sync for CapturePart
impl Unpin for CapturePart
impl UnwindSafe for CapturePart
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