pub struct EventList {
pub data: Option<Vec<ProductEvent>>,
}Fields§
§data: Option<Vec<ProductEvent>>Data is the events, newest first. Empty rather than absent when there are none.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EventList
impl<'de> Deserialize<'de> for EventList
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 EventList
Auto Trait Implementations§
impl Freeze for EventList
impl RefUnwindSafe for EventList
impl Send for EventList
impl Sync for EventList
impl Unpin for EventList
impl UnsafeUnpin for EventList
impl UnwindSafe for EventList
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