pub struct DeviceDescriptor {
pub id: DeviceId,
pub class: DeviceClass,
pub ordinal: u32,
pub total_memory_bytes: u64,
pub runtime_implementation_fingerprint: String,
pub capabilities: BTreeSet<CapabilityId>,
pub dynamic_storage_profiles: BTreeSet<DynamicStorageProfile>,
}Fields§
§id: DeviceId§class: DeviceClass§ordinal: u32§total_memory_bytes: u64§runtime_implementation_fingerprint: String§capabilities: BTreeSet<CapabilityId>§dynamic_storage_profiles: BTreeSet<DynamicStorageProfile>Implementations§
Source§impl DeviceDescriptor
impl DeviceDescriptor
pub fn validate(&self) -> Result<(), VNextError>
Trait Implementations§
Source§impl Clone for DeviceDescriptor
impl Clone for DeviceDescriptor
Source§fn clone(&self) -> DeviceDescriptor
fn clone(&self) -> DeviceDescriptor
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 DeviceDescriptor
impl Debug for DeviceDescriptor
Source§impl<'de> Deserialize<'de> for DeviceDescriptor
impl<'de> Deserialize<'de> for DeviceDescriptor
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
impl Eq for DeviceDescriptor
Source§impl PartialEq for DeviceDescriptor
impl PartialEq for DeviceDescriptor
Source§impl Serialize for DeviceDescriptor
impl Serialize for DeviceDescriptor
impl StructuralPartialEq for DeviceDescriptor
Auto Trait Implementations§
impl Freeze for DeviceDescriptor
impl RefUnwindSafe for DeviceDescriptor
impl Send for DeviceDescriptor
impl Sync for DeviceDescriptor
impl Unpin for DeviceDescriptor
impl UnsafeUnpin for DeviceDescriptor
impl UnwindSafe for DeviceDescriptor
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