pub struct ArchitectureAnomaly {
pub description: String,
pub node_id: u64,
pub expected: String,
pub actual: String,
pub severity: AnomalySeverity,
}Expand description
An architecture anomaly.
Fields§
§description: String§node_id: u64§expected: String§actual: String§severity: AnomalySeverityTrait Implementations§
Source§impl Clone for ArchitectureAnomaly
impl Clone for ArchitectureAnomaly
Source§fn clone(&self) -> ArchitectureAnomaly
fn clone(&self) -> ArchitectureAnomaly
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 ArchitectureAnomaly
impl Debug for ArchitectureAnomaly
Source§impl<'de> Deserialize<'de> for ArchitectureAnomaly
impl<'de> Deserialize<'de> for ArchitectureAnomaly
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
Auto Trait Implementations§
impl Freeze for ArchitectureAnomaly
impl RefUnwindSafe for ArchitectureAnomaly
impl Send for ArchitectureAnomaly
impl Sync for ArchitectureAnomaly
impl Unpin for ArchitectureAnomaly
impl UnsafeUnpin for ArchitectureAnomaly
impl UnwindSafe for ArchitectureAnomaly
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