pub enum InventoryCountType {
Difference,
Snapshot,
}Expand description
InventoryCountType. The type of count.
FHIR version: 5.0.0.
Variants§
Difference
difference
Difference. The inventory report is about the difference between a previous count and a current count, i.e. it represents the items that have been added/subtracted from inventory.
Snapshot
snapshot
Snapshot. The inventory report is a current absolute snapshot, i.e. it represents the quantities at hand.
Trait Implementations§
Source§impl AsRef<str> for InventoryCountType
impl AsRef<str> for InventoryCountType
Source§impl Clone for InventoryCountType
impl Clone for InventoryCountType
Source§fn clone(&self) -> InventoryCountType
fn clone(&self) -> InventoryCountType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InventoryCountType
impl Debug for InventoryCountType
Source§impl<'de> Deserialize<'de> for InventoryCountType
impl<'de> Deserialize<'de> for InventoryCountType
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 Display for InventoryCountType
impl Display for InventoryCountType
Source§impl From<InventoryCountType> for CodeableConcept
impl From<InventoryCountType> for CodeableConcept
Source§fn from(code: InventoryCountType) -> Self
fn from(code: InventoryCountType) -> Self
Converts to this type from the input type.
Source§impl From<InventoryCountType> for Coding
impl From<InventoryCountType> for Coding
Source§fn from(code: InventoryCountType) -> Self
fn from(code: InventoryCountType) -> Self
Converts to this type from the input type.
Source§impl FromStr for InventoryCountType
impl FromStr for InventoryCountType
Source§impl Hash for InventoryCountType
impl Hash for InventoryCountType
Source§impl PartialEq for InventoryCountType
impl PartialEq for InventoryCountType
Source§fn eq(&self, other: &InventoryCountType) -> bool
fn eq(&self, other: &InventoryCountType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InventoryCountType
impl Serialize for InventoryCountType
impl Copy for InventoryCountType
impl Eq for InventoryCountType
impl StructuralPartialEq for InventoryCountType
Auto Trait Implementations§
impl Freeze for InventoryCountType
impl RefUnwindSafe for InventoryCountType
impl Send for InventoryCountType
impl Sync for InventoryCountType
impl Unpin for InventoryCountType
impl UnsafeUnpin for InventoryCountType
impl UnwindSafe for InventoryCountType
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