pub struct Merchant {Show 13 fields
pub id: String,
pub group_id: String,
pub name: String,
pub logo: String,
pub emoji: String,
pub category: String,
pub online: bool,
pub atm: bool,
pub address: MerchantAddress,
pub disable_feedback: bool,
pub suggested_tags: Option<String>,
pub metadata: MerchantMetadata,
pub extra: ExtraValues,
}Fields§
§id: String§group_id: String§name: String§logo: String§emoji: String§category: String§online: bool§atm: bool§address: MerchantAddress§disable_feedback: bool§metadata: MerchantMetadata§extra: ExtraValuesThe value had extra fields that weren’t parsed into another field.
Trait 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
Source§impl HasExtraData for Merchant
Available on crate feature decode_everything only.
impl HasExtraData for Merchant
Available on crate feature
decode_everything only.Source§fn has_extra_data(&self) -> bool
fn has_extra_data(&self) -> bool
Recursively check if any extra data is present on this object or
any of it’s children.
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