pub struct CompileIcuOptions {
pub locale: String,
pub strict: bool,
}Expand description
Options for ICU runtime compilation.
Fields§
§locale: StringLocale used for plural selection.
strict: boolWhether parse errors should be returned instead of falling back.
Implementations§
Trait Implementations§
Source§impl Clone for CompileIcuOptions
impl Clone for CompileIcuOptions
Source§fn clone(&self) -> CompileIcuOptions
fn clone(&self) -> CompileIcuOptions
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 moreSource§impl Debug for CompileIcuOptions
impl Debug for CompileIcuOptions
Source§impl PartialEq for CompileIcuOptions
impl PartialEq for CompileIcuOptions
impl Eq for CompileIcuOptions
impl StructuralPartialEq for CompileIcuOptions
Auto Trait Implementations§
impl Freeze for CompileIcuOptions
impl RefUnwindSafe for CompileIcuOptions
impl Send for CompileIcuOptions
impl Sync for CompileIcuOptions
impl Unpin for CompileIcuOptions
impl UnsafeUnpin for CompileIcuOptions
impl UnwindSafe for CompileIcuOptions
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