pub struct CodesetInfo {
pub name: String,
pub also_known_as: Vec<String>,
pub mib_code: u32,
pub source: Option<String>,
pub references: Option<String>,
}Expand description
A representation of registrered character set data that maintained by IANA.
Fields§
§name: StringThe name, not a code, for this code set.
also_known_as: Vec<String>Any well known aliases for this code set.
mib_code: u32The IANA registered MIB code.
source: Option<String>Sources identified in the IANA registration.
references: Option<String>References identified in the IANA registration.
Trait Implementations§
Source§impl Debug for CodesetInfo
impl Debug for CodesetInfo
Source§impl<'de> Deserialize<'de> for CodesetInfo
impl<'de> Deserialize<'de> for CodesetInfo
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 CodesetInfo
impl RefUnwindSafe for CodesetInfo
impl Send for CodesetInfo
impl Sync for CodesetInfo
impl Unpin for CodesetInfo
impl UnwindSafe for CodesetInfo
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