pub enum ListEntry {
Record(Box<ListItem>),
Promotion(Box<PromotionItem>),
}Expand description
The items union (r48), discriminated by the existing kind field. Serde
tells the two arms apart structurally: only a lifecycle record carries
status, and only a promotion carries sources.
Variants§
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ListEntry
impl<'de> Deserialize<'de> for ListEntry
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 ListEntry
impl RefUnwindSafe for ListEntry
impl Send for ListEntry
impl Sync for ListEntry
impl Unpin for ListEntry
impl UnsafeUnpin for ListEntry
impl UnwindSafe for ListEntry
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