pub struct DevReport {
pub schema: DevReportSchema,
pub status: DevReportStatus,
pub doctor: DoctorReport,
pub fixtures: Vec<DevFixtureResult>,
pub receipt_id: Option<String>,
}Fields§
§schema: DevReportSchema§status: DevReportStatus§doctor: DoctorReport§fixtures: Vec<DevFixtureResult>§receipt_id: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for DevReport
impl<'de> Deserialize<'de> for DevReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DevReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DevReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl RunxSchema for DevReport
impl RunxSchema for DevReport
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
Source§impl Serialize for DevReport
impl Serialize for DevReport
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for DevReport
Auto Trait Implementations§
impl Freeze for DevReport
impl RefUnwindSafe for DevReport
impl Send for DevReport
impl Sync for DevReport
impl Unpin for DevReport
impl UnsafeUnpin for DevReport
impl UnwindSafe for DevReport
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