pub struct Converter { /* private fields */ }
Expand description

This is a convenience type that provides conversion functions directly to/from UTF-8.

This type wraps around ucnv_convertEx. It keeps two converters for the specified encoding and for UTF-8, as well as the UTF-16 pivot buffers used by ucnv_convertEx.

Its interface is analogous to the interface of UConverter, so for examples and more detailed information on its use, refer to the documentation page of UConverter.

For convenience, the single-string conversion functions take a &str for UTF-8 input and give a String for UTF-8 output.

Implementations§

source§

impl Converter

source

pub fn open(name: &str) -> Result<Self, Error>

source

pub fn try_clone(&self) -> Result<Self, Error>

source

pub fn has_ambiguous_mappings(&self) -> bool

source

pub fn name(&self) -> Result<&str, Error>

source

pub fn reset(&mut self)

source

pub fn reset_to_utf8(&mut self)

source

pub fn reset_from_utf8(&mut self)

source

pub fn feed_to_utf8(&mut self, dst: &mut [u8], src: &[u8]) -> FeedResult

source

pub fn feed_from_utf8(&mut self, dst: &mut [u8], src: &[u8]) -> FeedResult

source

pub fn convert_to_utf8(&mut self, src: &[u8]) -> Result<String, Error>

source

pub fn convert_from_utf8(&mut self, src: &str) -> Result<Vec<u8>, Error>

Trait Implementations§

source§

impl Debug for Converter

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Send for Converter

Auto Trait Implementations§

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>,

§

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>,

§

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.