pub struct Utf8Destination<'a> {
    slice: &'a mut [u8],
    pos: usize,
}

Fields§

§slice: &'a mut [u8]§pos: usize

Implementations§

source§

impl<'a> Utf8Destination<'a>

source

pub fn new(dst: &mut [u8]) -> Utf8Destination<'_>

source

pub fn check_space_bmp<'b>(&'b mut self) -> Space<Utf8BmpHandle<'b, 'a>>

source

pub fn check_space_astral<'b>(&'b mut self) -> Space<Utf8AstralHandle<'b, 'a>>

source

pub fn written(&self) -> usize

source

fn write_code_unit(&mut self, u: u8)

source

fn write_ascii(&mut self, ascii: u8)

source

fn write_bmp(&mut self, bmp: u16)

source

fn write_mid_bmp(&mut self, mid_bmp: u16)

source

fn write_upper_bmp(&mut self, upper_bmp: u16)

source

fn write_bmp_excl_ascii(&mut self, bmp: u16)

source

fn write_astral(&mut self, astral: u32)

source

pub fn write_surrogate_pair(&mut self, high: u16, low: u16)

source

fn write_big5_combination(&mut self, combined: u16, combining: u16)

source

pub fn copy_ascii_from_check_space_bmp<'b>( &'b mut self, source: &mut ByteSource<'_> ) -> CopyAsciiResult<(DecoderResult, usize, usize), (u8, Utf8BmpHandle<'b, 'a>)>

source

pub fn copy_ascii_from_check_space_astral<'b>( &'b mut self, source: &mut ByteSource<'_> ) -> CopyAsciiResult<(DecoderResult, usize, usize), (u8, Utf8AstralHandle<'b, 'a>)>

source

pub fn copy_utf8_up_to_invalid_from(&mut self, source: &mut ByteSource<'_>)

source

pub fn copy_utf16_from<E: Endian>( &mut self, source: &mut ByteSource<'_> ) -> Option<(usize, usize)>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for Utf8Destination<'a>

§

impl<'a> Send for Utf8Destination<'a>

§

impl<'a> Sync for Utf8Destination<'a>

§

impl<'a> Unpin for Utf8Destination<'a>

§

impl<'a> !UnwindSafe for Utf8Destination<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.