pub struct StringChain { /* private fields */ }Implementations§
Source§impl StringChain
impl StringChain
Sourcepub fn clear(self) -> Self
pub fn clear(self) -> Self
See documentation for String::clear for more details on the underlying function.
Sourcepub fn len(self, out: impl Output<usize>) -> Self
pub fn len(self, out: impl Output<usize>) -> Self
See documentation for String::len for more details on the underlying function.
Sourcepub fn push(self, ch: char) -> Self
pub fn push(self, ch: char) -> Self
See documentation for String::push for more details on the underlying function.
Sourcepub fn push_str(self, string: &str) -> Self
pub fn push_str(self, string: &str) -> Self
See documentation for String::push_str for more details on the underlying function.
Sourcepub fn reserve(self, additional: usize) -> Self
pub fn reserve(self, additional: usize) -> Self
See documentation for String::reserve for more details on the underlying function.
Sourcepub fn reserve_exact(self, additional: usize) -> Self
pub fn reserve_exact(self, additional: usize) -> Self
See documentation for String::reserve_exact for more details on the underlying function.
Trait Implementations§
Source§impl Chain for StringChain
impl Chain for StringChain
Source§impl ChainConversions for StringChain
impl ChainConversions for StringChain
Source§impl Clone for StringChain
impl Clone for StringChain
Auto Trait Implementations§
impl Freeze for StringChain
impl RefUnwindSafe for StringChain
impl Send for StringChain
impl Sync for StringChain
impl Unpin for StringChain
impl UnwindSafe for StringChain
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