pub struct DeviceReport {
pub device_id: u32,
pub information: DeviceInformation,
pub status: DeviceReportStatus,
}Fields§
§device_id: u32Vulkan physical device ID. Can be used in ContextDesc::device_id.
information: DeviceInformationDevice information (name, driver, etc).
status: DeviceReportStatusSelection status of this device.
Trait Implementations§
Source§impl Clone for DeviceReport
impl Clone for DeviceReport
Source§fn clone(&self) -> DeviceReport
fn clone(&self) -> DeviceReport
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 DeviceReport
impl RefUnwindSafe for DeviceReport
impl Send for DeviceReport
impl Sync for DeviceReport
impl Unpin for DeviceReport
impl UnsafeUnpin for DeviceReport
impl UnwindSafe for DeviceReport
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