pub struct StringKeeper<T, P> { /* private fields */ }
Trait Implementations§
Source§impl<T: Clone, P: Clone> Clone for StringKeeper<T, P>
impl<T: Clone, P: Clone> Clone for StringKeeper<T, P>
Source§fn clone(&self) -> StringKeeper<T, P>
fn clone(&self) -> StringKeeper<T, P>
Returns a copy 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, P> KeeperCommonExt<T, P> for StringKeeper<T, P>
impl<T, P> KeeperCommonExt<T, P> for StringKeeper<T, P>
fn beginning_of_string(self) -> StringKeeper<T, P>
fn end_of_string(self) -> StringKeeper<T, P>
fn including_pattern(self) -> StringKeeper<T, P>
fn excluding_pattern(self) -> StringKeeper<T, P>
fn before_pattern(self) -> StringKeeper<T, P>
fn after_pattern(self) -> StringKeeper<T, P>
fn until_first_matched_pattern(self, until_pattern: T) -> StringKeeper<T, P>
fn until_no_matched_pattern(self, until_pattern: T) -> StringKeeper<T, P>
Source§impl<T: Ord, P: Ord> Ord for StringKeeper<T, P>
impl<T: Ord, P: Ord> Ord for StringKeeper<T, P>
Source§fn cmp(&self, other: &StringKeeper<T, P>) -> Ordering
fn cmp(&self, other: &StringKeeper<T, P>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<T: PartialOrd, P: PartialOrd> PartialOrd for StringKeeper<T, P>
impl<T: PartialOrd, P: PartialOrd> PartialOrd for StringKeeper<T, P>
impl<T: Eq, P: Eq> Eq for StringKeeper<T, P>
impl<T, P> StructuralPartialEq for StringKeeper<T, P>
Auto Trait Implementations§
impl<T, P> Freeze for StringKeeper<T, P>
impl<T, P> RefUnwindSafe for StringKeeper<T, P>where
P: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, P> Send for StringKeeper<T, P>
impl<T, P> Sync for StringKeeper<T, P>
impl<T, P> Unpin for StringKeeper<T, P>
impl<T, P> UnwindSafe for StringKeeper<T, P>where
P: UnwindSafe,
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