pub enum ExternalFractionation {
Uniform {
count: u32,
},
Explicit {
doses: Vec<Vec<f64>>,
},
}Expand description
How the total dose divides into fractions.
Variants§
Uniform
count identical fractions; per-fraction dose is values / count.
Explicit
Explicit per-fraction dose arrays, each voxel-aligned to geometry.
Trait Implementations§
Source§impl Clone for ExternalFractionation
impl Clone for ExternalFractionation
Source§fn clone(&self) -> ExternalFractionation
fn clone(&self) -> ExternalFractionation
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 ExternalFractionation
impl Debug for ExternalFractionation
Source§impl<'de> Deserialize<'de> for ExternalFractionation
impl<'de> Deserialize<'de> for ExternalFractionation
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 PartialEq for ExternalFractionation
impl PartialEq for ExternalFractionation
Source§impl Serialize for ExternalFractionation
impl Serialize for ExternalFractionation
impl StructuralPartialEq for ExternalFractionation
Auto Trait Implementations§
impl Freeze for ExternalFractionation
impl RefUnwindSafe for ExternalFractionation
impl Send for ExternalFractionation
impl Sync for ExternalFractionation
impl Unpin for ExternalFractionation
impl UnsafeUnpin for ExternalFractionation
impl UnwindSafe for ExternalFractionation
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