pub struct NeuronPoint {
pub layer: usize,
pub neuron: usize,
pub bias: f32,
pub activation: f32,
pub position: [f32; 5],
}Fields§
§layer: usize§neuron: usize§bias: f32§activation: f32§position: [f32; 5]Trait Implementations§
Source§impl Clone for NeuronPoint
impl Clone for NeuronPoint
Source§fn clone(&self) -> NeuronPoint
fn clone(&self) -> NeuronPoint
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 moreSource§impl Debug for NeuronPoint
impl Debug for NeuronPoint
Source§impl Default for NeuronPoint
impl Default for NeuronPoint
impl Copy for NeuronPoint
Auto Trait Implementations§
impl Freeze for NeuronPoint
impl RefUnwindSafe for NeuronPoint
impl Send for NeuronPoint
impl Sync for NeuronPoint
impl Unpin for NeuronPoint
impl UnsafeUnpin for NeuronPoint
impl UnwindSafe for NeuronPoint
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