pub struct Excipient {
pub id: Option<i32>,
pub name: String,
pub amount: Option<String>,
pub unit: Option<String>,
pub order: Option<i32>,
}Expand description
Excipient
Fields§
§id: Option<i32>Excipient ID
name: StringName
amount: Option<String>Amount
unit: Option<String>Unit
order: Option<i32>Display order
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Excipient
impl<'de> Deserialize<'de> for Excipient
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 Excipient
impl RefUnwindSafe for Excipient
impl Send for Excipient
impl Sync for Excipient
impl Unpin for Excipient
impl UnsafeUnpin for Excipient
impl UnwindSafe for Excipient
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