pub struct ImmuneReport {
pub schema_version: String,
pub generated_at: Option<String>,
pub mode: String,
pub risk_increasing_allowed: bool,
pub summary: BTreeMap<String, Value>,
pub breakers: Vec<ImmuneBreaker>,
pub extra: BTreeMap<String, Value>,
}Fields§
§schema_version: String§generated_at: Option<String>§mode: String§risk_increasing_allowed: bool§summary: BTreeMap<String, Value>§breakers: Vec<ImmuneBreaker>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for ImmuneReport
impl Clone for ImmuneReport
Source§fn clone(&self) -> ImmuneReport
fn clone(&self) -> ImmuneReport
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 ImmuneReport
impl Debug for ImmuneReport
Source§impl Default for ImmuneReport
impl Default for ImmuneReport
Source§fn default() -> ImmuneReport
fn default() -> ImmuneReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImmuneReportwhere
ImmuneReport: Default,
impl<'de> Deserialize<'de> for ImmuneReportwhere
ImmuneReport: Default,
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 ImmuneReport
impl RefUnwindSafe for ImmuneReport
impl Send for ImmuneReport
impl Sync for ImmuneReport
impl Unpin for ImmuneReport
impl UnsafeUnpin for ImmuneReport
impl UnwindSafe for ImmuneReport
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