pub struct LandmarkPair {
pub name: Option<String>,
pub moving_lps_mm: [f64; 3],
pub fixed_lps_mm: [f64; 3],
}Expand description
One named or anonymous correspondence: a point in the moving image’s patient space and its matching point in the fixed image’s space, both LPS millimetres.
Fields§
§name: Option<String>§moving_lps_mm: [f64; 3]§fixed_lps_mm: [f64; 3]Trait Implementations§
Source§impl Clone for LandmarkPair
impl Clone for LandmarkPair
Source§fn clone(&self) -> LandmarkPair
fn clone(&self) -> LandmarkPair
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 LandmarkPair
impl Debug for LandmarkPair
Source§impl<'de> Deserialize<'de> for LandmarkPair
impl<'de> Deserialize<'de> for LandmarkPair
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 LandmarkPair
impl PartialEq for LandmarkPair
Source§impl Serialize for LandmarkPair
impl Serialize for LandmarkPair
impl StructuralPartialEq for LandmarkPair
Auto Trait Implementations§
impl Freeze for LandmarkPair
impl RefUnwindSafe for LandmarkPair
impl Send for LandmarkPair
impl Sync for LandmarkPair
impl Unpin for LandmarkPair
impl UnsafeUnpin for LandmarkPair
impl UnwindSafe for LandmarkPair
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