pub enum DroppedData {
StorageItems(Vec<DroppedStorageItem>),
Text(String),
Unsupported,
}Variants§
Trait Implementations§
Source§impl Clone for DroppedData
impl Clone for DroppedData
Source§fn clone(&self) -> DroppedData
fn clone(&self) -> DroppedData
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 Debug for DroppedData
impl Debug for DroppedData
impl Eq for DroppedData
Source§impl PartialEq for DroppedData
impl PartialEq for DroppedData
impl StructuralPartialEq for DroppedData
Auto Trait Implementations§
impl Freeze for DroppedData
impl RefUnwindSafe for DroppedData
impl Send for DroppedData
impl Sync for DroppedData
impl Unpin for DroppedData
impl UnsafeUnpin for DroppedData
impl UnwindSafe for DroppedData
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