pub struct SignalReport {
pub name: Option<String>,
pub display_name: Option<String>,
pub count: Option<i32>,
pub top_workspaces: Option<Vec<TopWorkspace>>,
}
Fields§
§name: Option<String>
Name of the attack type.
display_name: Option<String>
Display name of the attack type.
count: Option<i32>
Total count of attacks of this type.
top_workspaces: Option<Vec<TopWorkspace>>
Top workspaces affected by this attack type.
Implementations§
Source§impl SignalReport
impl SignalReport
pub fn new() -> SignalReport
Trait Implementations§
Source§impl Clone for SignalReport
impl Clone for SignalReport
Source§fn clone(&self) -> SignalReport
fn clone(&self) -> SignalReport
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 SignalReport
impl Debug for SignalReport
Source§impl Default for SignalReport
impl Default for SignalReport
Source§fn default() -> SignalReport
fn default() -> SignalReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignalReport
impl<'de> Deserialize<'de> for SignalReport
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 SignalReport
impl PartialEq for SignalReport
Source§impl Serialize for SignalReport
impl Serialize for SignalReport
impl StructuralPartialEq for SignalReport
Auto Trait Implementations§
impl Freeze for SignalReport
impl RefUnwindSafe for SignalReport
impl Send for SignalReport
impl Sync for SignalReport
impl Unpin for SignalReport
impl UnwindSafe for SignalReport
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