pub struct Batch {
pub id: Option<i64>,
pub item_categories: Option<Vec<LabTestsBatchItemCategoriesItem>>,
pub item_category_count: Option<i64>,
pub lab_test_type_count: Option<i64>,
pub lab_test_types: Option<Vec<LabTestsBatchLabTestTypesItem>>,
pub name: Option<String>,
pub requires_all_from_lab_test_batch: Option<bool>,
}Fields§
§id: Option<i64>§item_categories: Option<Vec<LabTestsBatchItemCategoriesItem>>§item_category_count: Option<i64>§lab_test_type_count: Option<i64>§lab_test_types: Option<Vec<LabTestsBatchLabTestTypesItem>>§name: Option<String>§requires_all_from_lab_test_batch: Option<bool>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Batch
impl<'de> Deserialize<'de> for Batch
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 Batch
impl RefUnwindSafe for Batch
impl Send for Batch
impl Sync for Batch
impl Unpin for Batch
impl UnsafeUnpin for Batch
impl UnwindSafe for Batch
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