#[non_exhaustive]pub enum AssetsRequest {
List,
}Expand description
A request supported by the DeDust asset-registry client.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
List
Load the complete DeDust asset registry.
Trait Implementations§
Source§impl Clone for AssetsRequest
impl Clone for AssetsRequest
Source§fn clone(&self) -> AssetsRequest
fn clone(&self) -> AssetsRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl From<&AssetsRequest> for AssetsRequest
impl From<&AssetsRequest> for AssetsRequest
Source§fn from(request: &AssetsRequest) -> Self
fn from(request: &AssetsRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetsRequest
impl RefUnwindSafe for AssetsRequest
impl Send for AssetsRequest
impl Sync for AssetsRequest
impl Unpin for AssetsRequest
impl UnsafeUnpin for AssetsRequest
impl UnwindSafe for AssetsRequest
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