Struct raw_string::Utf8Chunk
source · pub struct Utf8Chunk<'a> {
pub valid: &'a str,
pub broken: &'a [u8],
}
Expand description
A chunk of valid UTF-8, possibly followed by a broken character encoding.
Fields§
§valid: &'a str
A valid UTF-8 piece, at the start, end, or between broken chars.
Empty between adjacent broken chars.
broken: &'a [u8]
A broken char.
Can only be empty in the last chunk.
Should be replaced by a single unicode replacement character, if not empty.
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Utf8Chunk<'a>
impl<'a> Send for Utf8Chunk<'a>
impl<'a> Sync for Utf8Chunk<'a>
impl<'a> Unpin for Utf8Chunk<'a>
impl<'a> UnwindSafe for Utf8Chunk<'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