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<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 RunxSchema for DevReport
impl RunxSchema for DevReport
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
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