pub struct GalaxyMispFormat {
pub name: Option<String>,
pub type: Option<String>,
pub authors: Option<Vec<String>>,
pub version: Option<Box<GalaxyMispFormatVersion>>,
pub uuid: Option<Uuid>,
pub source: Option<String>,
pub values: Option<Vec<GalaxyMispFormatValuesInner>>,
}
Expand description
GalaxyMispFormat : Galaxy and clusters representation in misp-galaxy format.
Fields§
§name: Option<String>
§type: Option<String>
§version: Option<Box<GalaxyMispFormatVersion>>
§uuid: Option<Uuid>
§source: Option<String>
§values: Option<Vec<GalaxyMispFormatValuesInner>>
Implementations§
Source§impl GalaxyMispFormat
impl GalaxyMispFormat
Sourcepub fn new() -> GalaxyMispFormat
pub fn new() -> GalaxyMispFormat
Galaxy and clusters representation in misp-galaxy format.
Trait Implementations§
Source§impl Clone for GalaxyMispFormat
impl Clone for GalaxyMispFormat
Source§fn clone(&self) -> GalaxyMispFormat
fn clone(&self) -> GalaxyMispFormat
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 GalaxyMispFormat
impl Debug for GalaxyMispFormat
Source§impl Default for GalaxyMispFormat
impl Default for GalaxyMispFormat
Source§fn default() -> GalaxyMispFormat
fn default() -> GalaxyMispFormat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GalaxyMispFormat
impl<'de> Deserialize<'de> for GalaxyMispFormat
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 GalaxyMispFormat
impl PartialEq for GalaxyMispFormat
Source§impl Serialize for GalaxyMispFormat
impl Serialize for GalaxyMispFormat
impl StructuralPartialEq for GalaxyMispFormat
Auto Trait Implementations§
impl Freeze for GalaxyMispFormat
impl RefUnwindSafe for GalaxyMispFormat
impl Send for GalaxyMispFormat
impl Sync for GalaxyMispFormat
impl Unpin for GalaxyMispFormat
impl UnwindSafe for GalaxyMispFormat
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