pub enum KernelImplementation {
Statements(ExecutionProgram),
AnalyticalBuiltin(AnalyticalKernel),
}Variants§
Statements(ExecutionProgram)
AnalyticalBuiltin(AnalyticalKernel)
Trait Implementations§
Source§impl Clone for KernelImplementation
impl Clone for KernelImplementation
Source§fn clone(&self) -> KernelImplementation
fn clone(&self) -> KernelImplementation
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 Debug for KernelImplementation
impl Debug for KernelImplementation
Source§impl PartialEq for KernelImplementation
impl PartialEq for KernelImplementation
Source§fn eq(&self, other: &KernelImplementation) -> bool
fn eq(&self, other: &KernelImplementation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for KernelImplementation
Auto Trait Implementations§
impl Freeze for KernelImplementation
impl RefUnwindSafe for KernelImplementation
impl Send for KernelImplementation
impl Sync for KernelImplementation
impl Unpin for KernelImplementation
impl UnsafeUnpin for KernelImplementation
impl UnwindSafe for KernelImplementation
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