#[repr(C)]pub enum fann_nettype_enum {
FANN_NETTYPE_LAYER = 0,
FANN_NETTYPE_SHORTCUT = 1,
}Expand description
Definition of network types used by fann_get_network_type.
Variants§
FANN_NETTYPE_LAYER = 0
Each layer only has connections to the next layer.
FANN_NETTYPE_SHORTCUT = 1
Each layer has connections to all following layers.
Trait Implementations§
Source§impl Clone for fann_nettype_enum
impl Clone for fann_nettype_enum
Source§fn clone(&self) -> fann_nettype_enum
fn clone(&self) -> fann_nettype_enum
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 moreimpl Copy for fann_nettype_enum
Auto Trait Implementations§
impl Freeze for fann_nettype_enum
impl RefUnwindSafe for fann_nettype_enum
impl Send for fann_nettype_enum
impl Sync for fann_nettype_enum
impl Unpin for fann_nettype_enum
impl UnwindSafe for fann_nettype_enum
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