pub struct DecodedCharacter {
pub character: char,
pub bytes: Vec<u8>,
}
Expand description
A logical character that has been decoded from some code points.
Fields§
§character: char
§bytes: Vec<u8>
Trait Implementations§
Source§impl Clone for DecodedCharacter
impl Clone for DecodedCharacter
Source§fn clone(&self) -> DecodedCharacter
fn clone(&self) -> DecodedCharacter
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for DecodedCharacter
impl RefUnwindSafe for DecodedCharacter
impl Send for DecodedCharacter
impl Sync for DecodedCharacter
impl Unpin for DecodedCharacter
impl UnwindSafe for DecodedCharacter
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