pub struct GesvdInput<'a, TA, TS, TU, TVT> {
pub a: MatrixRef<'a, TA>,
pub singular_values: &'a DeviceMemory<TS>,
pub left_vectors: Option<MatrixRef<'a, TU>>,
pub right_vectors_transposed: Option<MatrixRef<'a, TVT>>,
}Fields§
§a: MatrixRef<'a, TA>§singular_values: &'a DeviceMemory<TS>§left_vectors: Option<MatrixRef<'a, TU>>§right_vectors_transposed: Option<MatrixRef<'a, TVT>>Trait Implementations§
Source§impl<'a, TA: Clone, TS: Clone, TU: Clone, TVT: Clone> Clone for GesvdInput<'a, TA, TS, TU, TVT>
impl<'a, TA: Clone, TS: Clone, TU: Clone, TVT: Clone> Clone for GesvdInput<'a, TA, TS, TU, TVT>
Source§fn clone(&self) -> GesvdInput<'a, TA, TS, TU, TVT>
fn clone(&self) -> GesvdInput<'a, TA, TS, TU, TVT>
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 moreSource§impl<'a, TA: Debug, TS: Debug, TU: Debug, TVT: Debug> Debug for GesvdInput<'a, TA, TS, TU, TVT>
impl<'a, TA: Debug, TS: Debug, TU: Debug, TVT: Debug> Debug for GesvdInput<'a, TA, TS, TU, TVT>
impl<'a, TA: Copy, TS: Copy, TU: Copy, TVT: Copy> Copy for GesvdInput<'a, TA, TS, TU, TVT>
Auto Trait Implementations§
impl<'a, TA, TS, TU, TVT> Freeze for GesvdInput<'a, TA, TS, TU, TVT>
impl<'a, TA, TS, TU, TVT> RefUnwindSafe for GesvdInput<'a, TA, TS, TU, TVT>
impl<'a, TA, TS, TU, TVT> Send for GesvdInput<'a, TA, TS, TU, TVT>
impl<'a, TA, TS, TU, TVT> Sync for GesvdInput<'a, TA, TS, TU, TVT>
impl<'a, TA, TS, TU, TVT> Unpin for GesvdInput<'a, TA, TS, TU, TVT>
impl<'a, TA, TS, TU, TVT> UnsafeUnpin for GesvdInput<'a, TA, TS, TU, TVT>
impl<'a, TA, TS, TU, TVT> UnwindSafe for GesvdInput<'a, TA, TS, TU, TVT>
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