pub struct LocalizedName {
pub finnish: Option<String>,
pub english: Option<String>,
pub swedish: Option<String>,
}Fields§
§finnish: Option<String>§english: Option<String>§swedish: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for LocalizedName
impl Clone for LocalizedName
Source§fn clone(&self) -> LocalizedName
fn clone(&self) -> LocalizedName
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 LocalizedName
impl Debug for LocalizedName
Source§impl Default for LocalizedName
impl Default for LocalizedName
Source§fn default() -> LocalizedName
fn default() -> LocalizedName
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LocalizedName
impl<'de> Deserialize<'de> for LocalizedName
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LocalizedName
impl RefUnwindSafe for LocalizedName
impl Send for LocalizedName
impl Sync for LocalizedName
impl Unpin for LocalizedName
impl UnsafeUnpin for LocalizedName
impl UnwindSafe for LocalizedName
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