pub struct ReflectInterfaceVariable {Show 13 fields
pub spirv_id: u32,
pub name: String,
pub location: u32,
pub storage_class: ReflectStorageClass,
pub semantic: String,
pub decoration_flags: ReflectDecorationFlags,
pub built_in: ReflectBuiltIn,
pub numeric: ReflectNumericTraits,
pub array: ReflectArrayTraits,
pub members: Vec<ReflectInterfaceVariable>,
pub format: ReflectFormat,
pub type_description: Option<ReflectTypeDescription>,
pub word_offset: u32,
/* private fields */
}Fields§
§spirv_id: u32§name: String§location: u32§storage_class: ReflectStorageClass§semantic: String§decoration_flags: ReflectDecorationFlags§built_in: ReflectBuiltIn§numeric: ReflectNumericTraits§array: ReflectArrayTraits§members: Vec<ReflectInterfaceVariable>§format: ReflectFormat§type_description: Option<ReflectTypeDescription>§word_offset: u32Trait Implementations§
Source§impl Clone for ReflectInterfaceVariable
impl Clone for ReflectInterfaceVariable
Source§fn clone(&self) -> ReflectInterfaceVariable
fn clone(&self) -> ReflectInterfaceVariable
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 ReflectInterfaceVariable
impl Debug for ReflectInterfaceVariable
Auto Trait Implementations§
impl Freeze for ReflectInterfaceVariable
impl RefUnwindSafe for ReflectInterfaceVariable
impl !Send for ReflectInterfaceVariable
impl !Sync for ReflectInterfaceVariable
impl Unpin for ReflectInterfaceVariable
impl UnwindSafe for ReflectInterfaceVariable
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