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