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