Struct bczhc_lib::utf8::SolvedUtf8Properties
source · pub struct SolvedUtf8Properties {
pub bytes_length: u32,
pub codepoint: u32,
}Fields§
§bytes_length: u32§codepoint: u32Implementations§
source§impl SolvedUtf8Properties
impl SolvedUtf8Properties
pub fn new() -> SolvedUtf8Properties
Trait Implementations§
source§impl Debug for SolvedUtf8Properties
impl Debug for SolvedUtf8Properties
source§impl Default for SolvedUtf8Properties
impl Default for SolvedUtf8Properties
source§fn default() -> SolvedUtf8Properties
fn default() -> SolvedUtf8Properties
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for SolvedUtf8Properties
impl Send for SolvedUtf8Properties
impl Sync for SolvedUtf8Properties
impl Unpin for SolvedUtf8Properties
impl UnwindSafe for SolvedUtf8Properties
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where
F: FnOnce(&Self) -> bool,
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where F: FnOnce(&Self) -> bool,
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more