pub enum LangPackLanguage {
LangPackLanguage(LangPackLanguage),
}Expand description
Variants§
LangPackLanguage(LangPackLanguage)
Trait Implementations§
Source§impl Clone for LangPackLanguage
impl Clone for LangPackLanguage
Source§fn clone(&self) -> LangPackLanguage
fn clone(&self) -> LangPackLanguage
Returns a duplicate of the value. Read more
1.0.0 · 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 LangPackLanguage
impl Debug for LangPackLanguage
Source§impl Deserializable for LangPackLanguage
impl Deserializable for LangPackLanguage
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<LangPackLanguage> for LangPackLanguage
impl From<LangPackLanguage> for LangPackLanguage
Source§fn from(x: LangPackLanguage) -> Self
fn from(x: LangPackLanguage) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LangPackLanguage
impl PartialEq for LangPackLanguage
Source§impl Serializable for LangPackLanguage
impl Serializable for LangPackLanguage
Source§impl TryFrom<LangPackLanguage> for LangPackLanguage
impl TryFrom<LangPackLanguage> for LangPackLanguage
Source§type Error = LangPackLanguage
type Error = LangPackLanguage
The type returned in the event of a conversion error.
impl StructuralPartialEq for LangPackLanguage
Auto Trait Implementations§
impl Freeze for LangPackLanguage
impl RefUnwindSafe for LangPackLanguage
impl Send for LangPackLanguage
impl Sync for LangPackLanguage
impl Unpin for LangPackLanguage
impl UnsafeUnpin for LangPackLanguage
impl UnwindSafe for LangPackLanguage
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