pub enum NPUArchitecture {
IntelMovidius,
IntelGNA,
IntelXDNA,
QualcommHexagon,
AppleNeuralEngine,
GoogleTPU,
AMDRyzenAI,
MediaTekAPU,
SamsungNPU,
HailoNPU,
KneronKL,
Unknown(String),
}
Expand description
NPU architecture information
Variants§
IntelMovidius
IntelGNA
IntelXDNA
QualcommHexagon
AppleNeuralEngine
GoogleTPU
AMDRyzenAI
MediaTekAPU
SamsungNPU
HailoNPU
KneronKL
Unknown(String)
Trait Implementations§
Source§impl Clone for NPUArchitecture
impl Clone for NPUArchitecture
Source§fn clone(&self) -> NPUArchitecture
fn clone(&self) -> NPUArchitecture
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 moreSource§impl Debug for NPUArchitecture
impl Debug for NPUArchitecture
Source§impl<'de> Deserialize<'de> for NPUArchitecture
impl<'de> Deserialize<'de> for NPUArchitecture
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NPUArchitecture
impl PartialEq for NPUArchitecture
Source§impl Serialize for NPUArchitecture
impl Serialize for NPUArchitecture
impl Eq for NPUArchitecture
impl StructuralPartialEq for NPUArchitecture
Auto Trait Implementations§
impl Freeze for NPUArchitecture
impl RefUnwindSafe for NPUArchitecture
impl Send for NPUArchitecture
impl Sync for NPUArchitecture
impl Unpin for NPUArchitecture
impl UnwindSafe for NPUArchitecture
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