[][src]Struct kurobako::plot::slice::PlotSliceOpt

pub struct PlotSliceOpt {
    pub output_dir: PathBuf,
    pub width: usize,
    pub height: usize,
    pub ymin: Option<f64>,
    pub ymax: Option<f64>,
    pub xmin: Option<f64>,
    pub xmax: Option<f64>,
}

Options of the kurobako plot slice command.

Fields

output_dir: PathBuf

Output directory where generated images are stored.

width: usize

Image width in pixels.

height: usize

Image height in pixels.

ymin: Option<f64>

Minimum value of Y axis.

ymax: Option<f64>

Maximum value of Y axis.

xmin: Option<f64>

Minimum value of X axis.

xmax: Option<f64>

Maximum value of X axis.

Trait Implementations

impl Debug for PlotSliceOpt[src]

impl StructOpt for PlotSliceOpt[src]

impl StructOptInternal for PlotSliceOpt[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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,