pub struct BrandNote {
pub archived_at: Option<DateTime<Utc>>,
pub banners: Option<Vec<i64>>,
pub brand: Option<i64>,
pub brands: Option<Vec<i64>>,
pub description: String,
pub id: Option<i64>,
pub job: Option<i64>,
pub notes_in_context: Option<Vec<i64>>,
pub started_at: Option<DateTime<Utc>>,
pub stores: Option<Vec<i64>>,
pub title: String,
}
Fields§
§archived_at: Option<DateTime<Utc>>
§brand: Option<i64>
§brands: Option<Vec<i64>>
§description: String
§id: Option<i64>
§job: Option<i64>
§notes_in_context: Option<Vec<i64>>
§started_at: Option<DateTime<Utc>>
§stores: Option<Vec<i64>>
§title: String
Trait Implementations§
source§impl<'de> Deserialize<'de> for BrandNote
impl<'de> Deserialize<'de> for BrandNote
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 RefUnwindSafe for BrandNote
impl Send for BrandNote
impl Sync for BrandNote
impl Unpin for BrandNote
impl UnwindSafe for BrandNote
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