pub enum Bazaar {
BazaarWeekly(BazaarWeekly),
BazaarSpecialized(BazaarSpecialized),
}
Variants§
BazaarWeekly(BazaarWeekly)
BazaarSpecialized(BazaarSpecialized)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Bazaar
impl<'de> Deserialize<'de> for Bazaar
Source§fn 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
Source§impl From<BazaarSpecialized> for Bazaar
impl From<BazaarSpecialized> for Bazaar
Source§fn from(value: BazaarSpecialized) -> Self
fn from(value: BazaarSpecialized) -> Self
Converts to this type from the input type.
Source§impl From<BazaarWeekly> for Bazaar
impl From<BazaarWeekly> for Bazaar
Source§fn from(value: BazaarWeekly) -> Self
fn from(value: BazaarWeekly) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Bazaar
Auto Trait Implementations§
impl Freeze for Bazaar
impl RefUnwindSafe for Bazaar
impl Send for Bazaar
impl Sync for Bazaar
impl Unpin for Bazaar
impl UnwindSafe for Bazaar
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