[][src]Struct rusoto_quicksight::DataColorPalette

pub struct DataColorPalette {
    pub colors: Option<Vec<String>>,
    pub empty_fill_color: Option<String>,
    pub min_max_gradient: Option<Vec<String>>,
}

The theme colors that are used for data colors in charts. The colors description is a hexidecimal color code that consists of six alphanumerical characters, prefixed with #, for example #37BFF5.

Fields

colors: Option<Vec<String>>

The hexadecimal codes for the colors.

empty_fill_color: Option<String>

The hexadecimal code of a color that applies to charts where a lack of data is highlighted.

min_max_gradient: Option<Vec<String>>

The minimum and maximum hexadecimal codes that describe a color gradient.

Trait Implementations

impl Clone for DataColorPalette[src]

impl Debug for DataColorPalette[src]

impl Default for DataColorPalette[src]

impl<'de> Deserialize<'de> for DataColorPalette[src]

impl PartialEq<DataColorPalette> for DataColorPalette[src]

impl Serialize for DataColorPalette[src]

impl StructuralPartialEq for DataColorPalette[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.