pub struct LangPackStringDeleted {
pub key: String,
}Expand description
Fields§
§key: StringTrait Implementations§
Source§impl Clone for LangPackStringDeleted
impl Clone for LangPackStringDeleted
Source§fn clone(&self) -> LangPackStringDeleted
fn clone(&self) -> LangPackStringDeleted
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 LangPackStringDeleted
impl Debug for LangPackStringDeleted
Source§impl Deserializable for LangPackStringDeleted
impl Deserializable for LangPackStringDeleted
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<LangPackStringDeleted> for LangPackString
impl From<LangPackStringDeleted> for LangPackString
Source§fn from(x: LangPackStringDeleted) -> Self
fn from(x: LangPackStringDeleted) -> Self
Converts to this type from the input type.
Source§impl Identifiable for LangPackStringDeleted
impl Identifiable for LangPackStringDeleted
Source§const CONSTRUCTOR_ID: u32 = 0x2979eeb2
const CONSTRUCTOR_ID: u32 = 0x2979eeb2
The constructor ID as specified in the TL schema.
Source§impl PartialEq for LangPackStringDeleted
impl PartialEq for LangPackStringDeleted
Source§impl Serializable for LangPackStringDeleted
impl Serializable for LangPackStringDeleted
Source§impl TryFrom<LangPackString> for LangPackStringDeleted
impl TryFrom<LangPackString> for LangPackStringDeleted
Source§type Error = LangPackString
type Error = LangPackString
The type returned in the event of a conversion error.
impl StructuralPartialEq for LangPackStringDeleted
Auto Trait Implementations§
impl Freeze for LangPackStringDeleted
impl RefUnwindSafe for LangPackStringDeleted
impl Send for LangPackStringDeleted
impl Sync for LangPackStringDeleted
impl Unpin for LangPackStringDeleted
impl UnsafeUnpin for LangPackStringDeleted
impl UnwindSafe for LangPackStringDeleted
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