pub struct StringBuilder<'a> { /* private fields */ }Expand description
Builder for string operations.
This builder provides a fluent interface for creating string operations such as concatenation, substring, etc.
Implementations§
Source§impl<'a> StringBuilder<'a>
impl<'a> StringBuilder<'a>
Sourcepub fn starts_with_op(&self) -> StringOperationBuilder<'a>
pub fn starts_with_op(&self) -> StringOperationBuilder<'a>
Creates a “starts with” operation.
Sourcepub fn ends_with_op(&self) -> StringOperationBuilder<'a>
pub fn ends_with_op(&self) -> StringOperationBuilder<'a>
Creates an “ends with” operation.
Auto Trait Implementations§
impl<'a> Freeze for StringBuilder<'a>
impl<'a> !RefUnwindSafe for StringBuilder<'a>
impl<'a> !Send for StringBuilder<'a>
impl<'a> !Sync for StringBuilder<'a>
impl<'a> Unpin for StringBuilder<'a>
impl<'a> !UnwindSafe for StringBuilder<'a>
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