pub struct GRUNetworkCache {
pub caches: Vec<GRUCellCache>,
}
Expand description
Cache for GRU network forward pass
Fields§
§caches: Vec<GRUCellCache>
Trait Implementations§
Source§impl Clone for GRUNetworkCache
impl Clone for GRUNetworkCache
Source§fn clone(&self) -> GRUNetworkCache
fn clone(&self) -> GRUNetworkCache
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 GRUNetworkCache
impl RefUnwindSafe for GRUNetworkCache
impl Send for GRUNetworkCache
impl Sync for GRUNetworkCache
impl Unpin for GRUNetworkCache
impl UnwindSafe for GRUNetworkCache
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