pub struct PtxHeader {
pub cols: u32,
pub rows: u32,
pub scanner_pos: [f64; 3],
pub scanner_axes: [[f64; 3]; 3],
}Expand description
PTX scan header.
Fields§
§cols: u32§rows: u32§scanner_pos: [f64; 3]§scanner_axes: [[f64; 3]; 3]Auto Trait Implementations§
impl Freeze for PtxHeader
impl RefUnwindSafe for PtxHeader
impl Send for PtxHeader
impl Sync for PtxHeader
impl Unpin for PtxHeader
impl UnsafeUnpin for PtxHeader
impl UnwindSafe for PtxHeader
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more