pub struct GalaxyCluster {Show 22 fields
pub uuid: Option<Uuid>,
pub collection_uuid: Option<Uuid>,
pub type: Option<String>,
pub value: Option<String>,
pub tag_name: Option<String>,
pub description: Option<String>,
pub galaxy_id: Option<String>,
pub source: Option<String>,
pub authors: Option<Vec<String>>,
pub version: Option<Option<String>>,
pub distribution: Option<DistributionLevelId>,
pub sharing_group_id: Option<Option<String>>,
pub org_id: Option<String>,
pub orgc_id: Option<String>,
pub default: Option<bool>,
pub locked: Option<bool>,
pub extends_uuid: Option<Option<String>>,
pub extends_version: Option<Option<String>>,
pub published: Option<bool>,
pub deleted: Option<bool>,
pub galaxy_element: Option<Vec<GalaxyElement>>,
pub id: Option<String>,
}
Expand description
GalaxyCluster : MISP galaxy is a simple method to express a large object called cluster that can be attached to MISP events or attributes.
Fields§
§uuid: Option<Uuid>
§collection_uuid: Option<Uuid>
§type: Option<String>
§value: Option<String>
§tag_name: Option<String>
§description: Option<String>
§galaxy_id: Option<String>
§source: Option<String>
§version: Option<Option<String>>
§distribution: Option<DistributionLevelId>
§sharing_group_id: Option<Option<String>>
§org_id: Option<String>
§orgc_id: Option<String>
§default: Option<bool>
§locked: Option<bool>
§extends_uuid: Option<Option<String>>
§extends_version: Option<Option<String>>
§published: Option<bool>
§deleted: Option<bool>
§galaxy_element: Option<Vec<GalaxyElement>>
§id: Option<String>
Implementations§
Source§impl GalaxyCluster
impl GalaxyCluster
Sourcepub fn new() -> GalaxyCluster
pub fn new() -> GalaxyCluster
MISP galaxy is a simple method to express a large object called cluster that can be attached to MISP events or attributes.
Trait Implementations§
Source§impl Clone for GalaxyCluster
impl Clone for GalaxyCluster
Source§fn clone(&self) -> GalaxyCluster
fn clone(&self) -> GalaxyCluster
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 GalaxyCluster
impl Debug for GalaxyCluster
Source§impl Default for GalaxyCluster
impl Default for GalaxyCluster
Source§fn default() -> GalaxyCluster
fn default() -> GalaxyCluster
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GalaxyCluster
impl<'de> Deserialize<'de> for GalaxyCluster
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 GalaxyCluster
impl PartialEq for GalaxyCluster
Source§impl Serialize for GalaxyCluster
impl Serialize for GalaxyCluster
impl StructuralPartialEq for GalaxyCluster
Auto Trait Implementations§
impl Freeze for GalaxyCluster
impl RefUnwindSafe for GalaxyCluster
impl Send for GalaxyCluster
impl Sync for GalaxyCluster
impl Unpin for GalaxyCluster
impl UnwindSafe for GalaxyCluster
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