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§
Source§impl<'de> Deserialize<'de> for DiffItem
impl<'de> Deserialize<'de> for DiffItem
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 DiffItem
impl RefUnwindSafe for DiffItem
impl Send for DiffItem
impl Sync for DiffItem
impl Unpin for DiffItem
impl UnwindSafe for DiffItem
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