#[repr(C, packed(4))]pub struct ScalingInfoInterop {
pub scale_x: f64,
pub scale_y: f64,
pub scale_z: f64,
}Expand description
This structure gathers the information about the scaling.
Fields§
§scale_x: f64< The length of a pixel in x-direction in the unit meters. If unknown/invalid, this value is numeric_limits
scale_y: f64< The length of a pixel in y-direction in the unit meters. If unknown/invalid, this value is numeric_limits
scale_z: f64< The length of a pixel in z-direction in the unit meters. If unknown/invalid, this value is numeric_limits
Trait Implementations§
Source§impl Clone for ScalingInfoInterop
impl Clone for ScalingInfoInterop
Source§fn clone(&self) -> ScalingInfoInterop
fn clone(&self) -> ScalingInfoInterop
Returns a duplicate of the value. Read more
1.0.0 · 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 ScalingInfoInterop
impl Debug for ScalingInfoInterop
impl Copy for ScalingInfoInterop
Auto Trait Implementations§
impl Freeze for ScalingInfoInterop
impl RefUnwindSafe for ScalingInfoInterop
impl Send for ScalingInfoInterop
impl Sync for ScalingInfoInterop
impl Unpin for ScalingInfoInterop
impl UnsafeUnpin for ScalingInfoInterop
impl UnwindSafe for ScalingInfoInterop
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