pub struct ResourcesCreateInfo<'a> {
pub max_buffers: u32,
pub max_images: u32,
pub max_swapchains: u32,
pub max_flights: u32,
pub _ne: NonExhaustive<'a>,
}
Expand description
Parameters to create a new Resources
collection.
Fields§
§max_buffers: u32
The maximum number of Buffer
s that the collection can hold at once.
max_images: u32
The maximum number of Image
s that the collection can hold at once.
max_swapchains: u32
The maximum number of Swapchain
s that the collection can hold at once.
max_flights: u32
The maximum number of Flight
s that the collection can hold at once.
_ne: NonExhaustive<'a>
Trait Implementations§
Source§impl<'a> Debug for ResourcesCreateInfo<'a>
impl<'a> Debug for ResourcesCreateInfo<'a>
Auto Trait Implementations§
impl<'a> Freeze for ResourcesCreateInfo<'a>
impl<'a> RefUnwindSafe for ResourcesCreateInfo<'a>
impl<'a> Send for ResourcesCreateInfo<'a>
impl<'a> Sync for ResourcesCreateInfo<'a>
impl<'a> Unpin for ResourcesCreateInfo<'a>
impl<'a> UnwindSafe for ResourcesCreateInfo<'a>
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