pub struct EffectNoiseGradient {
pub name: String,
pub roughness: Option<f64>,
pub color_model: Option<GradientColorModel>,
pub random_seed: Option<f64>,
pub restrict_colors: Option<bool>,
pub add_transparency: Option<bool>,
pub min: Vec<f64>,
pub max: Vec<f64>,
}Expand description
TS EffectNoiseGradient (type: 'noise').
Fields§
§name: String§roughness: Option<f64>§color_model: Option<GradientColorModel>§random_seed: Option<f64>§restrict_colors: Option<bool>§add_transparency: Option<bool>§min: Vec<f64>§max: Vec<f64>Trait Implementations§
Source§impl Clone for EffectNoiseGradient
impl Clone for EffectNoiseGradient
Source§fn clone(&self) -> EffectNoiseGradient
fn clone(&self) -> EffectNoiseGradient
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EffectNoiseGradient
impl Debug for EffectNoiseGradient
Source§impl Default for EffectNoiseGradient
impl Default for EffectNoiseGradient
Source§fn default() -> EffectNoiseGradient
fn default() -> EffectNoiseGradient
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EffectNoiseGradient
impl RefUnwindSafe for EffectNoiseGradient
impl Send for EffectNoiseGradient
impl Sync for EffectNoiseGradient
impl Unpin for EffectNoiseGradient
impl UnsafeUnpin for EffectNoiseGradient
impl UnwindSafe for EffectNoiseGradient
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