pub enum ConnectivityType {
FourConnected,
EightConnected,
}Expand description
Type of connectivity analysis to perform
Variants§
FourConnected
4-connected (orthogonal neighbors only)
EightConnected
8-connected (includes diagonal neighbors)
Trait Implementations§
Source§impl Clone for ConnectivityType
impl Clone for ConnectivityType
Source§fn clone(&self) -> ConnectivityType
fn clone(&self) -> ConnectivityType
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 moreAuto Trait Implementations§
impl Freeze for ConnectivityType
impl RefUnwindSafe for ConnectivityType
impl Send for ConnectivityType
impl Sync for ConnectivityType
impl Unpin for ConnectivityType
impl UnwindSafe for ConnectivityType
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