pub struct NeuronNode {
pub layer: usize,
pub index: usize,
pub activation: f32,
pub bias: f32,
}Fields§
§layer: usize§index: usize§activation: f32§bias: f32Trait Implementations§
Source§impl Clone for NeuronNode
impl Clone for NeuronNode
Source§fn clone(&self) -> NeuronNode
fn clone(&self) -> NeuronNode
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 NeuronNode
impl RefUnwindSafe for NeuronNode
impl Send for NeuronNode
impl Sync for NeuronNode
impl Unpin for NeuronNode
impl UnsafeUnpin for NeuronNode
impl UnwindSafe for NeuronNode
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