pub struct GraphicsObjects {
pub device: Arc<Device>,
pub graphics_queue: Arc<Queue>,
pub descriptor_set_allocator: Arc<StandardDescriptorSetAllocator>,
pub command_buffer_allocator: Arc<StandardCommandBufferAllocator>,
pub memory_allocator: Arc<StandardMemoryAllocator>,
}Fields§
§device: Arc<Device>§graphics_queue: Arc<Queue>§descriptor_set_allocator: Arc<StandardDescriptorSetAllocator>§command_buffer_allocator: Arc<StandardCommandBufferAllocator>§memory_allocator: Arc<StandardMemoryAllocator>Trait Implementations§
Source§impl Clone for GraphicsObjects
impl Clone for GraphicsObjects
Source§fn clone(&self) -> GraphicsObjects
fn clone(&self) -> GraphicsObjects
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 GraphicsObjects
impl !RefUnwindSafe for GraphicsObjects
impl Send for GraphicsObjects
impl Sync for GraphicsObjects
impl Unpin for GraphicsObjects
impl !UnwindSafe for GraphicsObjects
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