#[repr(C)]pub struct tileparamST {
pub firstcol: c_long,
pub ncol: c_long,
pub firstrow: c_long,
pub nrow: c_long,
}Expand description
tile parameter data structure
Fields§
§firstcol: c_long§ncol: c_longfirst column of tile to process (index from 0)
firstrow: c_longnumber of columns in tile to process
nrow: c_longfirst row of tile to process (index from 0)
Trait Implementations§
Source§impl Clone for tileparamST
impl Clone for tileparamST
Source§fn clone(&self) -> tileparamST
fn clone(&self) -> tileparamST
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 tileparamST
impl Debug for tileparamST
impl Copy for tileparamST
Auto Trait Implementations§
impl Freeze for tileparamST
impl RefUnwindSafe for tileparamST
impl Send for tileparamST
impl Sync for tileparamST
impl Unpin for tileparamST
impl UnwindSafe for tileparamST
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