pub struct VkMappedMemoryRange {
pub memory: VkDeviceMemory,
pub offset: usize,
pub size: usize,
}
Expand description
Wrapper for VkMappedMemoryRange.
Fields§
§memory: VkDeviceMemory
§offset: usize
§size: usize
Trait Implementations§
Source§impl Clone for VkMappedMemoryRange
impl Clone for VkMappedMemoryRange
Source§fn clone(&self) -> VkMappedMemoryRange
fn clone(&self) -> VkMappedMemoryRange
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 moreSource§impl Debug for VkMappedMemoryRange
impl Debug for VkMappedMemoryRange
Source§impl Default for VkMappedMemoryRange
impl Default for VkMappedMemoryRange
Source§fn default() -> VkMappedMemoryRange
fn default() -> VkMappedMemoryRange
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VkMappedMemoryRange
impl RefUnwindSafe for VkMappedMemoryRange
impl !Send for VkMappedMemoryRange
impl !Sync for VkMappedMemoryRange
impl Unpin for VkMappedMemoryRange
impl UnwindSafe for VkMappedMemoryRange
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