pub struct MarketplaceParticipation {
pub marketplace: Box<Marketplace>,
pub participation: Box<Participation>,
}Fields
marketplace: Box<Marketplace>participation: Box<Participation>Implementations
sourceimpl MarketplaceParticipation
impl MarketplaceParticipation
pub fn new(
marketplace: Marketplace,
participation: Participation
) -> MarketplaceParticipation
Trait Implementations
sourceimpl Clone for MarketplaceParticipation
impl Clone for MarketplaceParticipation
sourcefn clone(&self) -> MarketplaceParticipation
fn clone(&self) -> MarketplaceParticipation
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for MarketplaceParticipation
impl Debug for MarketplaceParticipation
sourceimpl Default for MarketplaceParticipation
impl Default for MarketplaceParticipation
sourcefn default() -> MarketplaceParticipation
fn default() -> MarketplaceParticipation
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for MarketplaceParticipation
impl<'de> Deserialize<'de> for MarketplaceParticipation
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<MarketplaceParticipation> for MarketplaceParticipation
impl PartialEq<MarketplaceParticipation> for MarketplaceParticipation
sourcefn eq(&self, other: &MarketplaceParticipation) -> bool
fn eq(&self, other: &MarketplaceParticipation) -> bool
sourceimpl Serialize for MarketplaceParticipation
impl Serialize for MarketplaceParticipation
impl StructuralPartialEq for MarketplaceParticipation
Auto Trait Implementations
impl RefUnwindSafe for MarketplaceParticipation
impl Send for MarketplaceParticipation
impl Sync for MarketplaceParticipation
impl Unpin for MarketplaceParticipation
impl UnwindSafe for MarketplaceParticipation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more