#[repr(C)]pub struct network_state {
pub truth: *mut f32,
pub input: *mut f32,
pub delta: *mut f32,
pub workspace: *mut f32,
pub train: c_int,
pub index: c_int,
pub net: network,
}Fields§
§truth: *mut f32§input: *mut f32§delta: *mut f32§workspace: *mut f32§train: c_int§index: c_int§net: networkTrait Implementations§
Source§impl Clone for network_state
impl Clone for network_state
Source§fn clone(&self) -> network_state
fn clone(&self) -> network_state
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for network_state
Auto Trait Implementations§
impl !Send for network_state
impl !Sync for network_state
impl Freeze for network_state
impl RefUnwindSafe for network_state
impl Unpin for network_state
impl UnsafeUnpin for network_state
impl UnwindSafe for network_state
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