pub struct NetworkAuditEntry {
pub timestamp: String,
pub peer_id: String,
pub capsule_id: String,
pub gene_id: String,
pub disposition: NetworkAuditDisposition,
pub reason: Option<String>,
pub score: Option<f64>,
}Fields§
§timestamp: String§peer_id: String§capsule_id: String§gene_id: String§disposition: NetworkAuditDisposition§reason: Option<String>§score: Option<f64>Trait Implementations§
Source§impl Clone for NetworkAuditEntry
impl Clone for NetworkAuditEntry
Source§fn clone(&self) -> NetworkAuditEntry
fn clone(&self) -> NetworkAuditEntry
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 NetworkAuditEntry
impl Debug for NetworkAuditEntry
Source§impl<'de> Deserialize<'de> for NetworkAuditEntry
impl<'de> Deserialize<'de> for NetworkAuditEntry
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 NetworkAuditEntry
impl RefUnwindSafe for NetworkAuditEntry
impl Send for NetworkAuditEntry
impl Sync for NetworkAuditEntry
impl Unpin for NetworkAuditEntry
impl UnsafeUnpin for NetworkAuditEntry
impl UnwindSafe for NetworkAuditEntry
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