pub struct AutonomousSystem {
pub number: Option<u32>,
pub name: Option<String>,
pub custom_properties: HashMap<String, Value>,
}Fields§
§number: Option<u32>§name: Option<String>§custom_properties: HashMap<String, Value>Implementations§
Source§impl AutonomousSystem
impl AutonomousSystem
pub fn builder() -> AutonomousSystemBuilder
Trait Implementations§
Source§impl Clone for AutonomousSystem
impl Clone for AutonomousSystem
Source§fn clone(&self) -> AutonomousSystem
fn clone(&self) -> AutonomousSystem
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 AutonomousSystem
impl Debug for AutonomousSystem
Source§impl<'de> Deserialize<'de> for AutonomousSystem
impl<'de> Deserialize<'de> for AutonomousSystem
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 From<AutonomousSystem> for StixObjectEnum
impl From<AutonomousSystem> for StixObjectEnum
Source§fn from(a: AutonomousSystem) -> Self
fn from(a: AutonomousSystem) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AutonomousSystem
impl PartialEq for AutonomousSystem
Source§impl Serialize for AutonomousSystem
impl Serialize for AutonomousSystem
impl Eq for AutonomousSystem
impl StructuralPartialEq for AutonomousSystem
Auto Trait Implementations§
impl Freeze for AutonomousSystem
impl RefUnwindSafe for AutonomousSystem
impl Send for AutonomousSystem
impl Sync for AutonomousSystem
impl Unpin for AutonomousSystem
impl UnwindSafe for AutonomousSystem
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