pub struct VFXGPUBufferDesc {
pub capacity: u32,
pub layout: Vec<VFXLayoutElementDesc>,
pub size: u32,
pub stride: u32,
pub _type: Option<i32>,
}Expand description
VFXGPUBufferDesc is a sub class of the Unity engine since version 2018.3.0f2.
Fields§
§capacity: u32§layout: Vec<VFXLayoutElementDesc>§size: u32§stride: u32§_type: Option<i32>i32: (2018.3.0f2 - 2022.3.2f1)
Trait Implementations§
Source§impl Debug for VFXGPUBufferDesc
impl Debug for VFXGPUBufferDesc
Source§impl<'de> Deserialize<'de> for VFXGPUBufferDesc
impl<'de> Deserialize<'de> for VFXGPUBufferDesc
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VFXGPUBufferDesc
impl RefUnwindSafe for VFXGPUBufferDesc
impl Send for VFXGPUBufferDesc
impl Sync for VFXGPUBufferDesc
impl Unpin for VFXGPUBufferDesc
impl UnwindSafe for VFXGPUBufferDesc
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