pub struct DiffItem {
pub id: Option<String>,
pub name: Option<String>,
pub status: Option<String>,
pub type_: Option<String>,
pub breaking: Option<bool>,
pub children: Option<Vec<DiffItem>>,
}Fields
id: Option<String>The identifier of the diff change
name: Option<String>The human name of diff change
status: Option<String>type_: Option<String>The object type of the diff change
breaking: Option<bool>Identifies if the item is a breaking change
children: Option<Vec<DiffItem>>A list of children item changes
Trait Implementations
sourceimpl<'de> Deserialize<'de> for DiffItem
impl<'de> Deserialize<'de> for DiffItem
sourcefn 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 DiffItem
impl Send for DiffItem
impl Sync for DiffItem
impl Unpin for DiffItem
impl UnwindSafe for DiffItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more