Struct ExGStringFind
pub struct ExGStringFind<'s, 'w> { /* private fields */ }
Expand description
Builder for GString::find_ex()
.
Implementations§
§impl<'s, 'w> ExGStringFind<'s, 'w>
impl<'s, 'w> ExGStringFind<'s, 'w>
pub fn r(self) -> ExGStringFind<'s, 'w>
pub fn r(self) -> ExGStringFind<'s, 'w>
Reverse search direction (start at back).
pub fn n(self) -> ExGStringFind<'s, 'w>
pub fn n(self) -> ExGStringFind<'s, 'w>
Case-insensitive search.
pub fn from(self, index: usize) -> ExGStringFind<'s, 'w>
pub fn from(self, index: usize) -> ExGStringFind<'s, 'w>
Start index – begin search here rather than at start/end of string.
Auto Trait Implementations§
impl<'s, 'w> Freeze for ExGStringFind<'s, 'w>
impl<'s, 'w> RefUnwindSafe for ExGStringFind<'s, 'w>
impl<'s, 'w> !Send for ExGStringFind<'s, 'w>
impl<'s, 'w> !Sync for ExGStringFind<'s, 'w>
impl<'s, 'w> Unpin for ExGStringFind<'s, 'w>
impl<'s, 'w> UnwindSafe for ExGStringFind<'s, 'w>
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