pub struct BridgeKitValidationReport {
pub ok: bool,
pub command: String,
pub source: String,
pub packet_count: usize,
pub valid_packet_count: usize,
pub invalid_packet_count: usize,
pub errors: Vec<String>,
pub packets: Vec<BridgeKitPacketReport>,
}Fields§
§ok: bool§command: String§source: String§packet_count: usize§valid_packet_count: usize§invalid_packet_count: usize§errors: Vec<String>§packets: Vec<BridgeKitPacketReport>Trait Implementations§
Source§impl Clone for BridgeKitValidationReport
impl Clone for BridgeKitValidationReport
Source§fn clone(&self) -> BridgeKitValidationReport
fn clone(&self) -> BridgeKitValidationReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BridgeKitValidationReport
impl Debug for BridgeKitValidationReport
Source§impl<'de> Deserialize<'de> for BridgeKitValidationReport
impl<'de> Deserialize<'de> for BridgeKitValidationReport
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 BridgeKitValidationReport
impl PartialEq for BridgeKitValidationReport
Source§fn eq(&self, other: &BridgeKitValidationReport) -> bool
fn eq(&self, other: &BridgeKitValidationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BridgeKitValidationReport
impl StructuralPartialEq for BridgeKitValidationReport
Auto Trait Implementations§
impl Freeze for BridgeKitValidationReport
impl RefUnwindSafe for BridgeKitValidationReport
impl Send for BridgeKitValidationReport
impl Sync for BridgeKitValidationReport
impl Unpin for BridgeKitValidationReport
impl UnsafeUnpin for BridgeKitValidationReport
impl UnwindSafe for BridgeKitValidationReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.