pub enum ExternalDoseQuantity {
Physical,
RbeWeighted,
}Expand description
What the imported dose field physically is. physical is absorbed dose;
rbe_weighted declares the producer already applied an RBE model — the
basis is carried through BED conversion so a weighted field can never be
silently read as physical dose downstream.
Variants§
Trait Implementations§
Source§impl Clone for ExternalDoseQuantity
impl Clone for ExternalDoseQuantity
Source§fn clone(&self) -> ExternalDoseQuantity
fn clone(&self) -> ExternalDoseQuantity
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 moreimpl Copy for ExternalDoseQuantity
Source§impl Debug for ExternalDoseQuantity
impl Debug for ExternalDoseQuantity
Source§impl<'de> Deserialize<'de> for ExternalDoseQuantity
impl<'de> Deserialize<'de> for ExternalDoseQuantity
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
impl Eq for ExternalDoseQuantity
Source§impl PartialEq for ExternalDoseQuantity
impl PartialEq for ExternalDoseQuantity
Source§impl Serialize for ExternalDoseQuantity
impl Serialize for ExternalDoseQuantity
impl StructuralPartialEq for ExternalDoseQuantity
Auto Trait Implementations§
impl Freeze for ExternalDoseQuantity
impl RefUnwindSafe for ExternalDoseQuantity
impl Send for ExternalDoseQuantity
impl Sync for ExternalDoseQuantity
impl Unpin for ExternalDoseQuantity
impl UnsafeUnpin for ExternalDoseQuantity
impl UnwindSafe for ExternalDoseQuantity
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