pub struct Galaxy {
pub id: Option<String>,
pub uuid: Option<Uuid>,
pub name: Option<String>,
pub type: Option<String>,
pub description: Option<String>,
pub version: Option<String>,
pub icon: Option<String>,
pub namespace: Option<String>,
pub kill_chain_order: Option<Option<Value>>,
}
Fields§
§id: Option<String>
§uuid: Option<Uuid>
§name: Option<String>
§type: Option<String>
§description: Option<String>
§version: Option<String>
§icon: Option<String>
§namespace: Option<String>
§kill_chain_order: Option<Option<Value>>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Galaxy
impl<'de> Deserialize<'de> for Galaxy
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
impl StructuralPartialEq for Galaxy
Auto Trait Implementations§
impl Freeze for Galaxy
impl RefUnwindSafe for Galaxy
impl Send for Galaxy
impl Sync for Galaxy
impl Unpin for Galaxy
impl UnwindSafe for Galaxy
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