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

Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
Formats the value using the given formatter. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more