pub struct StringsdictEntry {
pub key: String,
pub format_key: String,
pub variables: IndexMap<String, PluralVariable>,
}Expand description
A single entry from a .stringsdict file, representing a pluralized string.
Fields§
§key: String§format_key: StringThe NSStringLocalizedFormatKey value, e.g. %#@varname@.
variables: IndexMap<String, PluralVariable>Plural variables referenced by the format key.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StringsdictEntry
impl RefUnwindSafe for StringsdictEntry
impl Send for StringsdictEntry
impl Sync for StringsdictEntry
impl Unpin for StringsdictEntry
impl UnsafeUnpin for StringsdictEntry
impl UnwindSafe for StringsdictEntry
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