[][src]Enum vega_lite_4::RemovableValue

pub enum RemovableValue<T: Clone> {
    Default,
    Remove,
    Specified(T),
}

Wrapper for a field that can be either the default value, null or specified

Variants

Default

The default value for this field

Remove

This field should be removed

Specified(T)

This field should have the specified value

Trait Implementations

impl<T: Clone> Clone for RemovableValue<T>[src]

impl<T: Debug + Clone> Debug for RemovableValue<T>[src]

impl<T: Clone> Default for RemovableValue<T>[src]

impl<'de, T> Deserialize<'de> for RemovableValue<T> where
    T: Deserialize<'de> + Clone
[src]

impl<T> From<&'_ [T]> for RemovableValue<UrlData> where
    T: Serialize
[src]

impl<T> From<&'_ Vec<T, Global>> for RemovableValue<UrlData> where
    T: Serialize
[src]

impl From<&'_ str> for RemovableValue<String>[src]

impl From<&'_ str> for RemovableValue<ClearUnion>[src]

impl From<&'_ str> for RemovableValue<Day>[src]

impl From<&'_ str> for RemovableValue<DomainElement>[src]

impl From<&'_ str> for RemovableValue<Equal>[src]

impl From<&'_ str> for RemovableValue<Field>[src]

impl From<&'_ str> for RemovableValue<FluffyRange>[src]

impl From<&'_ str> for RemovableValue<FluffyStream>[src]

impl From<&'_ str> for RemovableValue<Format>[src]

impl From<&'_ str> for RemovableValue<GridColorUnion>[src]

impl From<&'_ str> for RemovableValue<InitValue>[src]

impl From<&'_ str> for RemovableValue<InlineDatasetValue>[src]

impl From<&'_ str> for RemovableValue<Color>[src]

impl From<&'_ str> for RemovableValue<LegendText>[src]

impl From<&'_ str> for RemovableValue<LegendUnion>[src]

impl From<&'_ str> for RemovableValue<Lt>[src]

impl From<&'_ str> for RemovableValue<MarkConfigExprOrSignalRefColor>[src]

impl From<&'_ str> for RemovableValue<MarkConfigExprOrSignalRefFill>[src]

impl From<&'_ str> for RemovableValue<MarkConfigExprOrSignalRefTooltip>[src]

impl From<&'_ str> for RemovableValue<Month>[src]

impl From<&'_ str> for RemovableValue<OnUnion>[src]

impl From<&'_ str> for RemovableValue<PredicateCompositionElement>[src]

impl From<&'_ str> for RemovableValue<PrimitiveValue>[src]

impl From<&'_ str> for RemovableValue<ConditionalAxisPropertyFontStyleNull>[src]

impl From<&'_ str> for RemovableValue<PurpleStream>[src]

impl From<&'_ str> for RemovableValue<RangeM>[src]

impl From<&'_ str> for RemovableValue<RangeText>[src]

impl From<&'_ str> for RemovableValue<Scheme>[src]

impl From<&'_ str> for RemovableValue<SelectionCompositionElement>[src]

impl From<&'_ str> for RemovableValue<SelectionInit>[src]

impl From<&'_ str> for RemovableValue<SelectionInitInterval>[src]

impl From<&'_ str> for RemovableValue<StyleColor>[src]

impl From<&'_ str> for RemovableValue<StyleFill>[src]

impl From<&'_ str> for RemovableValue<StyleTooltip>[src]

impl From<&'_ str> for RemovableValue<ConditionalAxisPropertyStringNull>[src]

impl From<&'_ str> for RemovableValue<TitleUnion>[src]

impl From<&'_ str> for RemovableValue<Translate>[src]

impl From<&'_ str> for RemovableValue<UrlDataInlineDataset>[src]

impl From<&'_ str> for RemovableValue<ConditionalPredicateValueDefTextExprRefText>[src]

impl From<&'_ str> for RemovableValue<ConditionalValueDefGradientStringNullExprRefValue>[src]

impl From<&'_ str> for RemovableValue<ConditionalValueDefNumberExprRefPredicateComposition>[src]

impl From<&'_ str> for RemovableValue<ConditionalValueDefNumberExprRefSelectionComposition>[src]

impl From<&'_ str> for RemovableValue<ConditionalValueDefTextExprRefText>[src]

impl<A, D, S> From<ArrayBase<S, D>> for RemovableValue<UrlData> where
    A: Serialize,
    D: Dimension,
    S: Data<Elem = A>, 
[src]

impl From<EncodingSortField> for RemovableValue<SortUnion>[src]

impl<R> From<Reader<R>> for RemovableValue<UrlData> where
    R: Read
[src]

impl From<Sort> for RemovableValue<SortUnion>[src]

impl<T: Clone> From<T> for RemovableValue<T>[src]

impl<T> Serialize for RemovableValue<T> where
    T: Serialize + Clone
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for RemovableValue<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for RemovableValue<T> where
    T: Send
[src]

impl<T> Sync for RemovableValue<T> where
    T: Sync
[src]

impl<T> Unpin for RemovableValue<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for RemovableValue<T> where
    T: UnwindSafe
[src]

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<!> for T[src]

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

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

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.