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