pub struct fann { /* private fields */ }Expand description
The fast artificial neural network (fann) structure.
Data within this structure should never be accessed directly, but only by using the
fann_get_... and fann_set_... functions.
The fann structure is created using one of the fann_create_... functions and each of
the functions which operates on the structure takes a fann pointer as the first parameter.
§See also
fann_create_standard, fann_destroy
Auto Trait Implementations§
impl Freeze for fann
impl RefUnwindSafe for fann
impl !Send for fann
impl !Sync for fann
impl Unpin for fann
impl UnwindSafe for fann
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