GDALRPCInfoV2

Struct GDALRPCInfoV2 

Source
#[repr(C)]
pub struct GDALRPCInfoV2 {
Show 20 fields pub dfLINE_OFF: f64, pub dfSAMP_OFF: f64, pub dfLAT_OFF: f64, pub dfLONG_OFF: f64, pub dfHEIGHT_OFF: f64, pub dfLINE_SCALE: f64, pub dfSAMP_SCALE: f64, pub dfLAT_SCALE: f64, pub dfLONG_SCALE: f64, pub dfHEIGHT_SCALE: f64, pub adfLINE_NUM_COEFF: [f64; 20], pub adfLINE_DEN_COEFF: [f64; 20], pub adfSAMP_NUM_COEFF: [f64; 20], pub adfSAMP_DEN_COEFF: [f64; 20], pub dfMIN_LONG: f64, pub dfMIN_LAT: f64, pub dfMAX_LONG: f64, pub dfMAX_LAT: f64, pub dfERR_BIAS: f64, pub dfERR_RAND: f64,
}

Fields§

§dfLINE_OFF: f64§dfSAMP_OFF: f64§dfLAT_OFF: f64§dfLONG_OFF: f64§dfHEIGHT_OFF: f64§dfLINE_SCALE: f64§dfSAMP_SCALE: f64§dfLAT_SCALE: f64§dfLONG_SCALE: f64§dfHEIGHT_SCALE: f64§adfLINE_NUM_COEFF: [f64; 20]§adfLINE_DEN_COEFF: [f64; 20]§adfSAMP_NUM_COEFF: [f64; 20]§adfSAMP_DEN_COEFF: [f64; 20]§dfMIN_LONG: f64§dfMIN_LAT: f64§dfMAX_LONG: f64§dfMAX_LAT: f64§dfERR_BIAS: f64§dfERR_RAND: f64

Trait Implementations§

Source§

impl Clone for GDALRPCInfoV2

Source§

fn clone(&self) -> GDALRPCInfoV2

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for GDALRPCInfoV2

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for GDALRPCInfoV2

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.