#[repr(C)]pub struct PhysicalDevicePCIBusInfoPropertiesEXT {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub pci_domain: u32,
pub pci_bus: u32,
pub pci_device: u32,
pub pci_function: u32,
}Expand description
VkPhysicalDevicePCIBusInfoPropertiesEXT
Provided by VK_EXT_pci_bus_info.
Returned only*, filled by Vulkan, not constructed by the application.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PCI_BUS_INFO_PROPERTIES_EXT.
p_next: *mut c_voidOptional, may be null.
pci_domain: u32§pci_bus: u32§pci_device: u32§pci_function: u32Implementations§
Source§impl PhysicalDevicePCIBusInfoPropertiesEXT
impl PhysicalDevicePCIBusInfoPropertiesEXT
Sourcepub fn builder<'a>() -> PhysicalDevicePCIBusInfoPropertiesEXTBuilder<'a>
pub fn builder<'a>() -> PhysicalDevicePCIBusInfoPropertiesEXTBuilder<'a>
Returns a builder for this struct with sType pre-filled.
Trait Implementations§
Source§impl Clone for PhysicalDevicePCIBusInfoPropertiesEXT
impl Clone for PhysicalDevicePCIBusInfoPropertiesEXT
Source§fn clone(&self) -> PhysicalDevicePCIBusInfoPropertiesEXT
fn clone(&self) -> PhysicalDevicePCIBusInfoPropertiesEXT
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 moreimpl Copy for PhysicalDevicePCIBusInfoPropertiesEXT
impl ExtendsPhysicalDeviceProperties2 for PhysicalDevicePCIBusInfoPropertiesEXT
Auto Trait Implementations§
impl Freeze for PhysicalDevicePCIBusInfoPropertiesEXT
impl RefUnwindSafe for PhysicalDevicePCIBusInfoPropertiesEXT
impl !Send for PhysicalDevicePCIBusInfoPropertiesEXT
impl !Sync for PhysicalDevicePCIBusInfoPropertiesEXT
impl Unpin for PhysicalDevicePCIBusInfoPropertiesEXT
impl UnsafeUnpin for PhysicalDevicePCIBusInfoPropertiesEXT
impl UnwindSafe for PhysicalDevicePCIBusInfoPropertiesEXT
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