Enum dotavious::attributes::ImageScale[][src]

pub enum ImageScale {
    Width,
    Height,
    Both,
}

Controls how an image fills its containing node. In general, the image is given its natural size, (cf. dpi), and the node size is made large enough to contain its image, its label, its margin, and its peripheries.

Its width and height will also be at least as large as its minimum width and height. If, however, fixedsize=true, the width and height attributes specify the exact size of the node.

During rendering, in the default case (imagescale=false), the image retains its natural size.

If imagescale=true, the image is uniformly scaled (i.e., its aspect ratio is preserved) to fit inside the node. At least one dimension of the image will be as large as possible given the size of the node.

When imagescale=width, the width of the image is scaled to fill the node width.

When imagescale=both, both the height and the width are scaled separately to fill the node.

As with the case of expansion, if imagescale=true, width and height are scaled uniformly.

Variants

Width
Height
Both

Trait Implementations

impl<'a> DotString<'a> for ImageScale[src]

impl<'a> From<ImageScale> for AttributeText<'a>[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, 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.