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