pub struct NextPackVersionInfoFindingDetailsItem {
pub finding: String,
pub path: String,
}
Expand description
NextPackVersionInfoFindingDetailsItem
JSON schema
{
"type": "object",
"required": [
"finding",
"path"
],
"properties": {
"finding": {
"type": "string"
},
"path": {
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§finding: String
§path: String
Trait Implementations§
Source§impl Clone for NextPackVersionInfoFindingDetailsItem
impl Clone for NextPackVersionInfoFindingDetailsItem
Source§fn clone(&self) -> NextPackVersionInfoFindingDetailsItem
fn clone(&self) -> NextPackVersionInfoFindingDetailsItem
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<'de> Deserialize<'de> for NextPackVersionInfoFindingDetailsItem
impl<'de> Deserialize<'de> for NextPackVersionInfoFindingDetailsItem
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<&NextPackVersionInfoFindingDetailsItem> for NextPackVersionInfoFindingDetailsItem
impl From<&NextPackVersionInfoFindingDetailsItem> for NextPackVersionInfoFindingDetailsItem
Source§fn from(value: &NextPackVersionInfoFindingDetailsItem) -> Self
fn from(value: &NextPackVersionInfoFindingDetailsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NextPackVersionInfoFindingDetailsItem
impl RefUnwindSafe for NextPackVersionInfoFindingDetailsItem
impl Send for NextPackVersionInfoFindingDetailsItem
impl Sync for NextPackVersionInfoFindingDetailsItem
impl Unpin for NextPackVersionInfoFindingDetailsItem
impl UnwindSafe for NextPackVersionInfoFindingDetailsItem
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