pub enum SavedDialog {
SavedDialog(SavedDialog),
MonoForumDialog(MonoForumDialog),
}Expand description
Variants§
SavedDialog(SavedDialog)
MonoForumDialog(MonoForumDialog)
Trait Implementations§
Source§impl Clone for SavedDialog
impl Clone for SavedDialog
Source§fn clone(&self) -> SavedDialog
fn clone(&self) -> SavedDialog
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 SavedDialog
impl Debug for SavedDialog
Source§impl Deserializable for SavedDialog
impl Deserializable for SavedDialog
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<MonoForumDialog> for SavedDialog
impl From<MonoForumDialog> for SavedDialog
Source§fn from(x: MonoForumDialog) -> Self
fn from(x: MonoForumDialog) -> Self
Converts to this type from the input type.
Source§impl From<SavedDialog> for SavedDialog
impl From<SavedDialog> for SavedDialog
Source§fn from(x: SavedDialog) -> Self
fn from(x: SavedDialog) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SavedDialog
impl PartialEq for SavedDialog
Source§impl Serializable for SavedDialog
impl Serializable for SavedDialog
Source§impl TryFrom<SavedDialog> for MonoForumDialog
impl TryFrom<SavedDialog> for MonoForumDialog
Source§type Error = SavedDialog
type Error = SavedDialog
The type returned in the event of a conversion error.
Source§impl TryFrom<SavedDialog> for SavedDialog
impl TryFrom<SavedDialog> for SavedDialog
Source§type Error = SavedDialog
type Error = SavedDialog
The type returned in the event of a conversion error.
impl StructuralPartialEq for SavedDialog
Auto Trait Implementations§
impl Freeze for SavedDialog
impl RefUnwindSafe for SavedDialog
impl Send for SavedDialog
impl Sync for SavedDialog
impl Unpin for SavedDialog
impl UnsafeUnpin for SavedDialog
impl UnwindSafe for SavedDialog
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