pub struct Merchant {
pub address: Address,
pub created: DateTime<Utc>,
pub group_id: String,
pub id: String,
pub logo: String,
pub emoji: String,
pub name: String,
pub category: String,
}Expand description
Merchant details
Fields§
§address: Address§created: DateTime<Utc>§group_id: String§id: String§logo: String§emoji: String§name: String§category: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Merchant
impl<'de> Deserialize<'de> for Merchant
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
impl StructuralPartialEq for Merchant
Auto Trait Implementations§
impl Freeze for Merchant
impl RefUnwindSafe for Merchant
impl Send for Merchant
impl Sync for Merchant
impl Unpin for Merchant
impl UnwindSafe for Merchant
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