pub struct Vendor {
pub company_id: String,
pub lang_code: Option<String>,
pub email: Option<String>,
pub company: Option<String>,
pub timestamp: Option<String>,
pub status: Option<String>,
pub seo_name: Option<String>,
pub seo_path: Option<String>,
pub average_rating: Option<String>,
}Fields§
§company_id: String§lang_code: Option<String>§email: Option<String>§company: Option<String>§timestamp: Option<String>§status: Option<String>§seo_name: Option<String>§seo_path: Option<String>§average_rating: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Vendor
impl<'de> Deserialize<'de> for Vendor
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
Auto Trait Implementations§
impl Freeze for Vendor
impl RefUnwindSafe for Vendor
impl Send for Vendor
impl Sync for Vendor
impl Unpin for Vendor
impl UnwindSafe for Vendor
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