pub struct NormalizedComponent {
pub raw: String,
pub normalized: String,
pub double_encoded: bool,
pub rounds: u32,
}Expand description
Result of normalization.
Fields§
§raw: String§normalized: String§double_encoded: bool§rounds: u32Trait Implementations§
Source§impl Clone for NormalizedComponent
impl Clone for NormalizedComponent
Source§fn clone(&self) -> NormalizedComponent
fn clone(&self) -> NormalizedComponent
Returns a duplicate 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 NormalizedComponent
impl RefUnwindSafe for NormalizedComponent
impl Send for NormalizedComponent
impl Sync for NormalizedComponent
impl Unpin for NormalizedComponent
impl UnwindSafe for NormalizedComponent
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