pub struct Convolutional<K> where
K: PositiveDefiniteKernel<Vec<f64>>, { /* private fields */ }
Implementations
sourceimpl<K> Convolutional<K> where
K: PositiveDefiniteKernel<Vec<f64>>,
impl<K> Convolutional<K> where
K: PositiveDefiniteKernel<Vec<f64>>,
pub fn new(kernel: K) -> Self
pub fn kernel_ref(&self) -> &K
Trait Implementations
sourceimpl<K: Clone> Clone for Convolutional<K> where
K: PositiveDefiniteKernel<Vec<f64>>,
impl<K: Clone> Clone for Convolutional<K> where
K: PositiveDefiniteKernel<Vec<f64>>,
sourcefn clone(&self) -> Convolutional<K>
fn clone(&self) -> Convolutional<K>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<K: Debug> Debug for Convolutional<K> where
K: PositiveDefiniteKernel<Vec<f64>>,
impl<K: Debug> Debug for Convolutional<K> where
K: PositiveDefiniteKernel<Vec<f64>>,
sourceimpl<T, K> PositiveDefiniteKernel<T> for Convolutional<K> where
T: Convolutable,
K: PositiveDefiniteKernel<Vec<f64>>,
impl<T, K> PositiveDefiniteKernel<T> for Convolutional<K> where
T: Convolutable,
K: PositiveDefiniteKernel<Vec<f64>>,
Auto Trait Implementations
impl<K> RefUnwindSafe for Convolutional<K> where
K: RefUnwindSafe,
impl<K> Send for Convolutional<K>
impl<K> Sync for Convolutional<K>
impl<K> Unpin for Convolutional<K> where
K: Unpin,
impl<K> UnwindSafe for Convolutional<K> where
K: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more