DeviceMetadata

Struct DeviceMetadata 

Source
pub struct DeviceMetadata { /* private fields */ }
Expand description

Metadata for after device creation.

Implementations§

Source§

impl DeviceMetadata

Source

pub fn device_handle(&self) -> Device

The device this metadata belongs to.

Source

pub fn physical_device(&self) -> PhysicalDevice

The physical device this device belongs to.

Source

pub fn surface(&self) -> Option<SurfaceKHR>

The surface this device was created for.

Source

pub fn properties(&self) -> &PhysicalDeviceProperties

Properties of the physical device.

Source

pub fn device_name(&self) -> Cow<'_, str>

Name of the physical device.

Source

pub fn device_type(&self) -> PhysicalDeviceType

Type of the physical device.

Source

pub fn device_queue( &self, instance: &InstanceLoader, device: &DeviceLoader, criteria: QueueFamilyCriteria, queue_index: u32, ) -> Result<Option<(Queue, u32)>, Result>

Returns a queue and the index of the queue family it belongs to. The best suited queue family meeting the criteria will be chosen. queue_index is the index within the queue family.

Source

pub fn queue_setups(&self) -> &[QueueSetup]

The queue setups which are in use.

Source

pub fn memory_properties(&self) -> &PhysicalDeviceMemoryProperties

The memory properties of the physical device.

Source

pub fn queue_family_properties(&self) -> &[QueueFamilyProperties]

The queue family properties of the physical device.

Source

pub fn enabled_extensions(&self) -> &[CString]

List of all enabled extensions in the instance.

Source

pub unsafe fn is_extension_enabled(&self, extension: *const c_char) -> bool

Returns true if extension is enabled.

Trait Implementations§

Source§

impl Clone for DeviceMetadata

Source§

fn clone(&self) -> DeviceMetadata

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 DeviceMetadata

Source§

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

Formats the value using the given formatter. Read more

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<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.