pub struct VectorC1<const N: usize, S: Space<N>> {
pub value: Tensor<N, 1, Gen, S::VecStore>,
pub derivs: Tensor<N, 2, Gen, S::MatStore>,
}Expand description
A C1 vector field at a single point.
Fields§
§value: Tensor<N, 1, Gen, S::VecStore>§derivs: Tensor<N, 2, Gen, S::MatStore>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<const N: usize, S> Freeze for VectorC1<N, S>
impl<const N: usize, S> RefUnwindSafe for VectorC1<N, S>where
Tensor<N, 1, Gen, <S as Space<N>>::VecStore>: RefUnwindSafe,
Tensor<N, 2, Gen, <S as Space<N>>::MatStore>: RefUnwindSafe,
impl<const N: usize, S> Send for VectorC1<N, S>
impl<const N: usize, S> Sync for VectorC1<N, S>
impl<const N: usize, S> Unpin for VectorC1<N, S>
impl<const N: usize, S> UnsafeUnpin for VectorC1<N, S>where
Tensor<N, 1, Gen, <S as Space<N>>::VecStore>: UnsafeUnpin,
Tensor<N, 2, Gen, <S as Space<N>>::MatStore>: UnsafeUnpin,
impl<const N: usize, S> UnwindSafe for VectorC1<N, S>where
Tensor<N, 1, Gen, <S as Space<N>>::VecStore>: UnwindSafe,
Tensor<N, 2, Gen, <S as Space<N>>::MatStore>: UnwindSafe,
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