pub struct PendingLocaleEntry {
pub category: Option<String>,
pub key: PendingLocaleKey,
pub value: String,
}Expand description
One unresolved entry before string-const resolution.
Fields§
§category: Option<String>§key: PendingLocaleKey§value: StringTrait Implementations§
Source§impl Clone for PendingLocaleEntry
impl Clone for PendingLocaleEntry
Source§fn clone(&self) -> PendingLocaleEntry
fn clone(&self) -> PendingLocaleEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PendingLocaleEntry
impl Debug for PendingLocaleEntry
impl Eq for PendingLocaleEntry
Source§impl PartialEq for PendingLocaleEntry
impl PartialEq for PendingLocaleEntry
impl StructuralPartialEq for PendingLocaleEntry
Auto Trait Implementations§
impl Freeze for PendingLocaleEntry
impl RefUnwindSafe for PendingLocaleEntry
impl Send for PendingLocaleEntry
impl Sync for PendingLocaleEntry
impl Unpin for PendingLocaleEntry
impl UnsafeUnpin for PendingLocaleEntry
impl UnwindSafe for PendingLocaleEntry
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