[][src]Struct vega_lite_3::BrushConfigBuilder

pub struct BrushConfigBuilder { /* fields omitted */ }

Builder for BrushConfig.

Methods

impl BrushConfigBuilder[src]

pub fn fill<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self[src]

The fill color of the interval mark.

Default value: #333333

pub fn fill_opacity<VALUE: Into<f64>>(&mut self, value: VALUE) -> &mut Self[src]

The fill opacity of the interval mark (a value between 0 and 1).

Default value: 0.125

pub fn stroke<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self[src]

The stroke color of the interval mark.

Default value: #ffffff

pub fn stroke_dash<VALUE: Into<Vec<f64>>>(&mut self, value: VALUE) -> &mut Self[src]

An array of alternating stroke and space lengths, for creating dashed or dotted lines.

pub fn stroke_dash_offset<VALUE: Into<f64>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

The offset (in pixels) with which to begin drawing the stroke dash array.

pub fn stroke_opacity<VALUE: Into<f64>>(&mut self, value: VALUE) -> &mut Self[src]

The stroke opacity of the interval mark (a value between 0 and 1).

pub fn stroke_width<VALUE: Into<f64>>(&mut self, value: VALUE) -> &mut Self[src]

The stroke width of the interval mark.

pub fn build(&self) -> Result<BrushConfig, String>[src]

Builds a new BrushConfig.

Errors

If a required field has not been initialized.

Trait Implementations

impl Clone for BrushConfigBuilder[src]

impl Default for BrushConfigBuilder[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> 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.