DeviceProperties

Struct DeviceProperties 

Source
pub struct DeviceProperties {
    pub features: Features,
    pub memory: MemoryDeviceProperties,
    pub hardware: HardwareProperties,
    pub timing_method: TimingMethod,
}
Expand description

Properties of what the device can do, like what Feature are supported by it and what its memory properties are.

Fields§

§features: Features

The features supported by the runtime.

§memory: MemoryDeviceProperties

The memory properties of this client.

§hardware: HardwareProperties

The topology properties of this client.

§timing_method: TimingMethod

The method used for profiling on the device.

Implementations§

Source§

impl DeviceProperties

Source

pub fn new( features: Features, memory_props: MemoryDeviceProperties, hardware: HardwareProperties, timing_method: TimingMethod, ) -> Self

Create a new feature set with the given features and memory properties.

Source

pub fn type_usage(&self, ty: StorageType) -> EnumSet<TypeUsage>

Get the usages for a type

Source

pub fn supports_type(&self, ty: impl Into<Type>) -> bool

Whether the type is supported in any way

Source

pub fn supports_address(&self, ty: impl Into<AddressType>) -> bool

Whether the address type is supported in any way

Source

pub fn register_address_type(&mut self, ty: impl Into<AddressType>)

Register an address type to the features

Source

pub fn register_type_usage( &mut self, ty: impl Into<StorageType>, uses: impl Into<EnumSet<TypeUsage>>, )

Register a storage type to the features

Source

pub fn register_semantic_type(&mut self, ty: SemanticType)

Register a semantic type to the features

Trait Implementations§

Source§

impl Clone for DeviceProperties

Source§

fn clone(&self) -> DeviceProperties

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DeviceProperties

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for DeviceProperties

Source§

fn eq(&self, other: &DeviceProperties) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TypeHash for DeviceProperties

Source§

fn write_hash(_hasher: &mut impl Hasher)

Write the structure of the type to the hasher
Source§

fn type_hash() -> u64

Generate a stable hash of the type structure. Read more
Source§

impl Eq for DeviceProperties

Source§

impl StructuralPartialEq for DeviceProperties

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V