#[repr(C)]pub struct EffectParamsV1 {
pub vec4s: [[f32; 4]; 4],
}Expand description
Fixed-size custom effect parameters (v1).
This is intentionally a small, bounded payload for capability-gated custom effects.
Fields§
§vec4s: [[f32; 4]; 4]Implementations§
Trait Implementations§
Source§impl Clone for EffectParamsV1
impl Clone for EffectParamsV1
Source§fn clone(&self) -> EffectParamsV1
fn clone(&self) -> EffectParamsV1
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 EffectParamsV1
impl Debug for EffectParamsV1
Source§impl PartialEq for EffectParamsV1
impl PartialEq for EffectParamsV1
impl Copy for EffectParamsV1
impl StructuralPartialEq for EffectParamsV1
Auto Trait Implementations§
impl Freeze for EffectParamsV1
impl RefUnwindSafe for EffectParamsV1
impl Send for EffectParamsV1
impl Sync for EffectParamsV1
impl Unpin for EffectParamsV1
impl UnsafeUnpin for EffectParamsV1
impl UnwindSafe for EffectParamsV1
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