pub struct DecodedStr<'a>(/* private fields */);
Expand description
DecodedStr represents text after decoding html entities. SmallVec and Cow are used internally for less allocation.
Trait Implementations§
Source§impl<'a> Debug for DecodedStr<'a>
impl<'a> Debug for DecodedStr<'a>
Auto Trait Implementations§
impl<'a> Freeze for DecodedStr<'a>
impl<'a> RefUnwindSafe for DecodedStr<'a>
impl<'a> Send for DecodedStr<'a>
impl<'a> Sync for DecodedStr<'a>
impl<'a> Unpin for DecodedStr<'a>
impl<'a> UnwindSafe for DecodedStr<'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