pub struct NextPackVersionInfo {
pub finding_details: Vec<NextPackVersionInfoFindingDetailsItem>,
pub findings: Vec<String>,
pub next_version: String,
}
Expand description
Information indicating the next Pack version definition.
JSON schema
{
"description": "Information indicating the next Pack version
definition.",
"type": "object",
"required": [
"findingDetails",
"findings",
"nextVersion"
],
"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.",
"deprecated": true,
"type": "array",
"items": {
"type": "string"
}
},
"nextVersion": {
"description": "The next valid version for the Pack.",
"examples": [
"2.1.0"
],
"type": "string"
}
},
"additionalProperties": false,
"x-schema-name": "NextPackVersionInfo"
}
Fields§
§finding_details: Vec<NextPackVersionInfoFindingDetailsItem>
§findings: Vec<String>
List of changes from the previous version.
next_version: String
The next valid version for the Pack.
Trait Implementations§
Source§impl Clone for NextPackVersionInfo
impl Clone for NextPackVersionInfo
Source§fn clone(&self) -> NextPackVersionInfo
fn clone(&self) -> NextPackVersionInfo
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 NextPackVersionInfo
impl Debug for NextPackVersionInfo
Source§impl<'de> Deserialize<'de> for NextPackVersionInfo
impl<'de> Deserialize<'de> for NextPackVersionInfo
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<&NextPackVersionInfo> for NextPackVersionInfo
impl From<&NextPackVersionInfo> for NextPackVersionInfo
Source§fn from(value: &NextPackVersionInfo) -> Self
fn from(value: &NextPackVersionInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NextPackVersionInfo
impl RefUnwindSafe for NextPackVersionInfo
impl Send for NextPackVersionInfo
impl Sync for NextPackVersionInfo
impl Unpin for NextPackVersionInfo
impl UnwindSafe for NextPackVersionInfo
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