pub enum Utf16Written<'a> {
FullyComplete,
Missing(EncodeUtf16<'a>),
}
Expand description
Represents how much a string buffer was written
Variants§
FullyComplete
Indicates that the whole string buffer written without errors
Missing(EncodeUtf16<'a>)
Indicates an erorr occured when writing, also gives the rest of the encoder
Auto Trait Implementations§
impl<'a> Freeze for Utf16Written<'a>
impl<'a> RefUnwindSafe for Utf16Written<'a>
impl<'a> Send for Utf16Written<'a>
impl<'a> Sync for Utf16Written<'a>
impl<'a> Unpin for Utf16Written<'a>
impl<'a> UnwindSafe for Utf16Written<'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