pub struct References {
pub id: Uuid,
pub editor_id: Uuid,
pub created: NaiveDateTime,
pub name: String,
pub url: String,
pub ref_type: String,
pub ref_source: String,
}
Fields§
§id: Uuid
example: c0f010fe-da9c-4aa6-b898-c57d483df51b The UUID of the tag.
editor_id: Uuid
example: c28a806c-84c7-44bf-95d3-1241475de5bf The UUID of the contributor who last edited the topic.
created: NaiveDateTime
example: 2019-07-02T16:22:15.879357Z The date and time the reference was created.
name: String
example: CVE-2019-0708 - BlueKeep The name of the reference.
url: String
example: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-123-1342 The url associated with the reference.
ref_type: String
example: canonical The type of the reference.
ref_source: String
example: system
Trait Implementations§
Source§impl Clone for References
impl Clone for References
Source§fn clone(&self) -> References
fn clone(&self) -> References
Returns a copy 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 References
impl Debug for References
Source§impl<'de> Deserialize<'de> for References
impl<'de> Deserialize<'de> for References
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 PartialEq for References
impl PartialEq for References
Source§impl Serialize for References
impl Serialize for References
impl StructuralPartialEq for References
Auto Trait Implementations§
impl Freeze for References
impl RefUnwindSafe for References
impl Send for References
impl Sync for References
impl Unpin for References
impl UnwindSafe for References
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