pub enum ConvSetupError {
    Matmul(MatmulSetupError),
    Groups(usize),
    Unknown,
}Variants§
Trait Implementations§
Source§impl Debug for ConvSetupError
 
impl Debug for ConvSetupError
Source§impl From<MatmulAvailabilityError> for ConvSetupError
 
impl From<MatmulAvailabilityError> for ConvSetupError
Source§fn from(value: MatmulAvailabilityError) -> Self
 
fn from(value: MatmulAvailabilityError) -> Self
Converts to this type from the input type.
Source§impl From<MatmulSetupError> for ConvSetupError
 
impl From<MatmulSetupError> for ConvSetupError
Source§fn from(value: MatmulSetupError) -> Self
 
fn from(value: MatmulSetupError) -> Self
Converts to this type from the input type.
Source§impl Into<AutotuneError> for ConvSetupError
 
impl Into<AutotuneError> for ConvSetupError
Source§fn into(self) -> AutotuneError
 
fn into(self) -> AutotuneError
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for ConvSetupError
impl !RefUnwindSafe for ConvSetupError
impl !Send for ConvSetupError
impl !Sync for ConvSetupError
impl Unpin for ConvSetupError
impl !UnwindSafe for ConvSetupError
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