pub struct PackVersionDiffs {
pub finding_details: Vec<PackVersionDiffsFindingDetailsItem>,
pub findings: Vec<String>,
}
Expand description
Info about the diff between two Pack versions.
JSON schema
{
"description": "Info about the diff between two Pack versions.",
"type": "object",
"required": [
"findingDetails",
"findings"
],
"properties": {
"findingDetails": {
"type": "array",
"items": {
"type": "object",
"required": [
"finding",
"path"
],
"properties": {
"finding": {
"type": "string"
},
"path": {
"type": "string"
}
},
"additionalProperties": false
}
},
"findings": {
"description": "List of changes from the previous version to the
next version.",
"deprecated": true,
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"x-schema-name": "PackVersionDiffs"
}
Fields§
§finding_details: Vec<PackVersionDiffsFindingDetailsItem>
§findings: Vec<String>
List of changes from the previous version to the next version.
Trait Implementations§
Source§impl Clone for PackVersionDiffs
impl Clone for PackVersionDiffs
Source§fn clone(&self) -> PackVersionDiffs
fn clone(&self) -> PackVersionDiffs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PackVersionDiffs
impl Debug for PackVersionDiffs
Source§impl<'de> Deserialize<'de> for PackVersionDiffs
impl<'de> Deserialize<'de> for PackVersionDiffs
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
Source§impl From<&PackVersionDiffs> for PackVersionDiffs
impl From<&PackVersionDiffs> for PackVersionDiffs
Source§fn from(value: &PackVersionDiffs) -> Self
fn from(value: &PackVersionDiffs) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackVersionDiffs
impl RefUnwindSafe for PackVersionDiffs
impl Send for PackVersionDiffs
impl Sync for PackVersionDiffs
impl Unpin for PackVersionDiffs
impl UnwindSafe for PackVersionDiffs
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