pub struct STPValidationReport {
pub is_stp_compliant: bool,
pub rule_violations: Vec<STPRuleViolation>,
pub warnings: Vec<String>,
}
Expand description
STP Validation Report
Fields§
§is_stp_compliant: bool
§rule_violations: Vec<STPRuleViolation>
§warnings: Vec<String>
Trait Implementations§
Source§impl Clone for STPValidationReport
impl Clone for STPValidationReport
Source§fn clone(&self) -> STPValidationReport
fn clone(&self) -> STPValidationReport
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 STPValidationReport
impl Debug for STPValidationReport
Source§impl<'de> Deserialize<'de> for STPValidationReport
impl<'de> Deserialize<'de> for STPValidationReport
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 STPValidationReport
impl RefUnwindSafe for STPValidationReport
impl Send for STPValidationReport
impl Sync for STPValidationReport
impl Unpin for STPValidationReport
impl UnwindSafe for STPValidationReport
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