pub enum Dialogs {
Dialogs(Dialogs),
Slice(DialogsSlice),
NotModified(DialogsNotModified),
}Expand description
Variants§
Trait Implementations§
Source§impl Deserializable for Dialogs
impl Deserializable for Dialogs
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<DialogsNotModified> for Dialogs
impl From<DialogsNotModified> for Dialogs
Source§fn from(x: DialogsNotModified) -> Self
fn from(x: DialogsNotModified) -> Self
Converts to this type from the input type.
Source§impl From<DialogsSlice> for Dialogs
impl From<DialogsSlice> for Dialogs
Source§fn from(x: DialogsSlice) -> Self
fn from(x: DialogsSlice) -> Self
Converts to this type from the input type.
Source§impl Serializable for Dialogs
impl Serializable for Dialogs
Source§impl TryFrom<Dialogs> for DialogsNotModified
impl TryFrom<Dialogs> for DialogsNotModified
Source§impl TryFrom<Dialogs> for DialogsSlice
impl TryFrom<Dialogs> for DialogsSlice
impl StructuralPartialEq for Dialogs
Auto Trait Implementations§
impl Freeze for Dialogs
impl RefUnwindSafe for Dialogs
impl Send for Dialogs
impl Sync for Dialogs
impl Unpin for Dialogs
impl UnsafeUnpin for Dialogs
impl UnwindSafe for Dialogs
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