pub struct RasterBand {
pub is_nodata_value: bool,
pub data: RasterDataSource,
}Expand description
Single band of raster data
Fields§
§is_nodata_value: boolIf true, all the values of band are expected to be values. This is a dirty flagTo set the flag to its real
the function st_bandisnodatamust be called for the band ‘TRUE’ as last argument.
data: RasterDataSourceThe actual data of the
Trait Implementations§
Source§impl Clone for RasterBand
impl Clone for RasterBand
Source§fn clone(&self) -> RasterBand
fn clone(&self) -> RasterBand
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 RasterBand
impl Debug for RasterBand
Source§impl PartialEq for RasterBand
impl PartialEq for RasterBand
Source§impl PartialOrd for RasterBand
impl PartialOrd for RasterBand
impl StructuralPartialEq for RasterBand
Auto Trait Implementations§
impl Freeze for RasterBand
impl RefUnwindSafe for RasterBand
impl Send for RasterBand
impl Sync for RasterBand
impl Unpin for RasterBand
impl UnwindSafe for RasterBand
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