encoding_rs::handles

Struct Utf8Destination

Source
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> Freeze for Utf8Destination<'a>

§

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 T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.