Struct core::str::pattern::EmptyNeedle
source · struct EmptyNeedle {
position: usize,
end: usize,
is_match_fw: bool,
is_match_bw: bool,
is_finished: bool,
}
🔬This is a nightly-only experimental API. (
pattern
#27721)Fields§
§position: usize
🔬This is a nightly-only experimental API. (
§pattern
#27721)end: usize
🔬This is a nightly-only experimental API. (
§pattern
#27721)is_match_fw: bool
🔬This is a nightly-only experimental API. (
§pattern
#27721)is_match_bw: bool
🔬This is a nightly-only experimental API. (
§pattern
#27721)is_finished: bool
🔬This is a nightly-only experimental API. (
pattern
#27721)Trait Implementations§
source§impl Clone for EmptyNeedle
impl Clone for EmptyNeedle
source§fn clone(&self) -> EmptyNeedle
fn clone(&self) -> EmptyNeedle
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 moreAuto Trait Implementations§
impl Freeze for EmptyNeedle
impl RefUnwindSafe for EmptyNeedle
impl Send for EmptyNeedle
impl Sync for EmptyNeedle
impl Unpin for EmptyNeedle
impl UnwindSafe for EmptyNeedle
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