#[repr(C)]pub struct TensorCreateInfoARM {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: TensorCreateFlagsARM,
pub p_description: *const TensorDescriptionARM,
pub sharing_mode: SharingMode,
pub queue_family_index_count: u32,
pub p_queue_family_indices: *const u32,
}Expand description
VkTensorCreateInfoARM
Provided by VK_ARM_tensors.
§Extended By
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_TENSOR_CREATE_INFO_ARM.
p_next: *const c_voidOptional, may be null.
flags: TensorCreateFlagsARM§p_description: *const TensorDescriptionARM§sharing_mode: SharingMode§queue_family_index_count: u32Length of p_queue_family_indices.
p_queue_family_indices: *const u32Implementations§
Source§impl TensorCreateInfoARM
impl TensorCreateInfoARM
Sourcepub fn builder<'a>() -> TensorCreateInfoARMBuilder<'a>
pub fn builder<'a>() -> TensorCreateInfoARMBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for TensorCreateInfoARM
impl Clone for TensorCreateInfoARM
Source§fn clone(&self) -> TensorCreateInfoARM
fn clone(&self) -> TensorCreateInfoARM
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 TensorCreateInfoARM
impl Debug for TensorCreateInfoARM
Source§impl Default for TensorCreateInfoARM
impl Default for TensorCreateInfoARM
impl Copy for TensorCreateInfoARM
Auto Trait Implementations§
impl Freeze for TensorCreateInfoARM
impl RefUnwindSafe for TensorCreateInfoARM
impl !Send for TensorCreateInfoARM
impl !Sync for TensorCreateInfoARM
impl Unpin for TensorCreateInfoARM
impl UnsafeUnpin for TensorCreateInfoARM
impl UnwindSafe for TensorCreateInfoARM
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