pub struct LayerPlan<'a> {
pub layers: &'a [LayerSpec],
pub weights: &'a [f32],
pub biases: &'a [f32],
}Fields§
§layers: &'a [LayerSpec]§weights: &'a [f32]§biases: &'a [f32]Implementations§
Auto Trait Implementations§
impl<'a> Freeze for LayerPlan<'a>
impl<'a> RefUnwindSafe for LayerPlan<'a>
impl<'a> Send for LayerPlan<'a>
impl<'a> Sync for LayerPlan<'a>
impl<'a> Unpin for LayerPlan<'a>
impl<'a> UnsafeUnpin for LayerPlan<'a>
impl<'a> UnwindSafe for LayerPlan<'a>
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