pub struct LogarithmicGradient {
pub breakpoints: Vec<Breakpoint>,
pub no_data_color: Vec<i32>,
pub over_color: Vec<i32>,
pub type: Type,
pub under_color: Vec<i32>,
}Fields§
§breakpoints: Vec<Breakpoint>§no_data_color: Vec<i32>§over_color: Vec<i32>§type: Type§under_color: Vec<i32>Implementations§
Trait Implementations§
Source§impl Clone for LogarithmicGradient
impl Clone for LogarithmicGradient
Source§fn clone(&self) -> LogarithmicGradient
fn clone(&self) -> LogarithmicGradient
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 LogarithmicGradient
impl Debug for LogarithmicGradient
Source§impl Default for LogarithmicGradient
impl Default for LogarithmicGradient
Source§fn default() -> LogarithmicGradient
fn default() -> LogarithmicGradient
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogarithmicGradient
impl<'de> Deserialize<'de> for LogarithmicGradient
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
Source§impl PartialEq for LogarithmicGradient
impl PartialEq for LogarithmicGradient
Source§fn eq(&self, other: &LogarithmicGradient) -> bool
fn eq(&self, other: &LogarithmicGradient) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LogarithmicGradient
impl Serialize for LogarithmicGradient
impl StructuralPartialEq for LogarithmicGradient
Auto Trait Implementations§
impl Freeze for LogarithmicGradient
impl RefUnwindSafe for LogarithmicGradient
impl Send for LogarithmicGradient
impl Sync for LogarithmicGradient
impl Unpin for LogarithmicGradient
impl UnsafeUnpin for LogarithmicGradient
impl UnwindSafe for LogarithmicGradient
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