Struct yore::code_pages::CP1254

source ·
pub struct CP1254;

Implementations§

source§

impl CP1254

source

pub fn decode(self, bytes: &[u8]) -> Cow<'_, str>

Decode CP1254 byte-encoding into UTF-8 string

Examples
use yore::code_pages::CP1254;

assert_eq!(CP1254.decode(&[116, 101, 120, 116]), "text");
source

pub fn encode(self, s: &str) -> Result<Cow<'_, [u8]>, EncodeError>

Encode UTF-8 string into CP1254 byte-encoding

Undefined characters will result in EncodeError

Examples
use yore::code_pages::CP1254;
use yore::EncodeError;

assert_eq!(CP1254.encode("text").unwrap(), vec![116, 101, 120, 116]);
assert!(matches!(CP1254.encode("text 🦀"), EncodeError));
source

pub fn encode_lossy(self, s: &str, fallback: u8) -> Cow<'_, [u8]>

Encode UTF-8 string into CP1254 byte-encoding

Undefined characters will be replaced with byte fallback

Examples
use yore::code_pages::CP1254;

assert_eq!(CP1254.encode_lossy("text 🦀", 168), vec![116, 101, 120, 116, 32, 168]);

Trait Implementations§

source§

impl Clone for CP1254

source§

fn clone(&self) -> CP1254

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl CodePage for CP1254

source§

fn decode<'a>(&self, bytes: &'a [u8]) -> Result<Cow<'a, str>, DecodeError>

Decode single-byte encoding into UTF-8 string Read more
source§

fn encode<'a>(&self, s: &'a str) -> Result<Cow<'a, [u8]>, EncodeError>

Encode UTF-8 string into single-byte encoding Read more
source§

fn encode_lossy<'a>(&self, s: &'a str, fallback: u8) -> Cow<'a, [u8]>

Encode UTF-8 string into single-byte encoding Read more
source§

fn decode_lossy<'a>(&self, bytes: &'a [u8]) -> Cow<'a, str>

Decode single-byte encoding into UTF-8 string Read more
source§

fn decode_lossy_fallback<'a>( &self, bytes: &'a [u8], _fallback: char ) -> Cow<'a, str>

Decode single-byte encoding into UTF-8 string Read more
source§

impl Copy for CP1254

Auto Trait Implementations§

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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.