pub struct PendingLocaleFile {
pub lang: String,
pub file: String,
pub entries: Vec<PendingLocaleEntry>,
}Expand description
Parsed locale! language block awaiting Type::CONST resolution.
Fields§
§lang: String§file: String§entries: Vec<PendingLocaleEntry>Trait Implementations§
Source§impl Clone for PendingLocaleFile
impl Clone for PendingLocaleFile
Source§fn clone(&self) -> PendingLocaleFile
fn clone(&self) -> PendingLocaleFile
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 PendingLocaleFile
impl Debug for PendingLocaleFile
impl Eq for PendingLocaleFile
Source§impl PartialEq for PendingLocaleFile
impl PartialEq for PendingLocaleFile
impl StructuralPartialEq for PendingLocaleFile
Auto Trait Implementations§
impl Freeze for PendingLocaleFile
impl RefUnwindSafe for PendingLocaleFile
impl Send for PendingLocaleFile
impl Sync for PendingLocaleFile
impl Unpin for PendingLocaleFile
impl UnsafeUnpin for PendingLocaleFile
impl UnwindSafe for PendingLocaleFile
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