pub struct Joiner<'s> { /* private fields */ }Implementations§
Source§impl<'s> Joiner<'s>
impl<'s> Joiner<'s>
pub fn new() -> Self
pub fn with_options(options: JoinerOptions) -> Self
pub fn append(&mut self, source: MagicString<'s>) -> &mut Self
pub fn append_raw(&mut self, raw: &'s str) -> &mut Self
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn join(&self) -> String
Trait Implementations§
Auto Trait Implementations§
impl<'s> Freeze for Joiner<'s>
impl<'s> RefUnwindSafe for Joiner<'s>
impl<'s> Send for Joiner<'s>
impl<'s> Sync for Joiner<'s>
impl<'s> Unpin for Joiner<'s>
impl<'s> UnsafeUnpin for Joiner<'s>
impl<'s> UnwindSafe for Joiner<'s>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more