pub enum AdDestination {
Website,
MarketplaceStore(Marketplace),
MarketplaceListing(Marketplace, Nat),
}Variants§
Trait Implementations§
Source§impl Clone for AdDestination
impl Clone for AdDestination
Source§fn clone(&self) -> AdDestination
fn clone(&self) -> AdDestination
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 AdDestination
impl Debug for AdDestination
Source§impl PartialEq for AdDestination
impl PartialEq for AdDestination
Source§fn eq(&self, other: &AdDestination) -> bool
fn eq(&self, other: &AdDestination) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AdDestination
impl Eq for AdDestination
impl StructuralPartialEq for AdDestination
Auto Trait Implementations§
impl Freeze for AdDestination
impl RefUnwindSafe for AdDestination
impl Send for AdDestination
impl Sync for AdDestination
impl Unpin for AdDestination
impl UnsafeUnpin for AdDestination
impl UnwindSafe for AdDestination
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