pub enum FlowDirEncoding {
Esri,
Taudem,
}Expand description
D8 flow direction encoding convention.
Declares which encoding convention a flow_dir.tif raster uses.
The engine normalizes to its internal convention at read time.
Variants§
Esri
ESRI convention: powers of 2 (1, 2, 4, 8, 16, 32, 64, 128).
Taudem
TauDEM convention: 1-8, east origin, counter-clockwise.
Trait Implementations§
Source§impl Clone for FlowDirEncoding
impl Clone for FlowDirEncoding
Source§fn clone(&self) -> FlowDirEncoding
fn clone(&self) -> FlowDirEncoding
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FlowDirEncoding
Source§impl Debug for FlowDirEncoding
impl Debug for FlowDirEncoding
Source§impl Display for FlowDirEncoding
impl Display for FlowDirEncoding
impl Eq for FlowDirEncoding
Source§impl FromStr for FlowDirEncoding
impl FromStr for FlowDirEncoding
Source§impl Hash for FlowDirEncoding
impl Hash for FlowDirEncoding
Source§impl PartialEq for FlowDirEncoding
impl PartialEq for FlowDirEncoding
Source§fn eq(&self, other: &FlowDirEncoding) -> bool
fn eq(&self, other: &FlowDirEncoding) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FlowDirEncoding
Auto Trait Implementations§
impl Freeze for FlowDirEncoding
impl RefUnwindSafe for FlowDirEncoding
impl Send for FlowDirEncoding
impl Sync for FlowDirEncoding
impl Unpin for FlowDirEncoding
impl UnsafeUnpin for FlowDirEncoding
impl UnwindSafe for FlowDirEncoding
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