pub struct BackendValidation {
pub simd_available: bool,
pub simd_validated: bool,
pub blas_available: bool,
pub blas_validated: bool,
pub gpu_available: bool,
pub gpu_validated: bool,
pub webgpu_available: bool,
pub webgpu_validated: bool,
pub metal_available: bool,
pub metal_validated: bool,
}Expand description
Resultados de validación de backends
Fields§
§simd_available: bool§simd_validated: bool§blas_available: bool§blas_validated: bool§gpu_available: bool§gpu_validated: bool§webgpu_available: bool§webgpu_validated: bool§metal_available: bool§metal_validated: boolTrait Implementations§
Source§impl Clone for BackendValidation
impl Clone for BackendValidation
Source§fn clone(&self) -> BackendValidation
fn clone(&self) -> BackendValidation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BackendValidation
impl RefUnwindSafe for BackendValidation
impl Send for BackendValidation
impl Sync for BackendValidation
impl Unpin for BackendValidation
impl UnwindSafe for BackendValidation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more