pub struct ScriptInfo {
pub alphabetic_code: String,
pub numeric_code: u16,
pub name: String,
pub alias: Option<String>,
}Expand description
A representation of registered script data maintained by ISO.
Fields§
§alphabetic_code: StringThe standard 3-character identifier for this script.
numeric_code: u16The standard numeric identifier for this script.
name: StringThe script name, in English.
alias: Option<String>An optional alias for this script.
Trait Implementations§
Source§impl Debug for ScriptInfo
impl Debug for ScriptInfo
Source§impl<'de> Deserialize<'de> for ScriptInfo
impl<'de> Deserialize<'de> for ScriptInfo
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 ScriptInfo
impl RefUnwindSafe for ScriptInfo
impl Send for ScriptInfo
impl Sync for ScriptInfo
impl Unpin for ScriptInfo
impl UnwindSafe for ScriptInfo
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