Struct iced_native::widget::svg::Svg[][src]

pub struct Svg { /* fields omitted */ }

A vector graphics image.

An Svg image resizes smoothly without losing any quality.

Svg images can have a considerable rendering cost when resized, specially when they are complex.

Implementations

impl Svg[src]

pub fn new(handle: impl Into<Handle>) -> Self[src]

Creates a new Svg from the given Handle.

pub fn from_path(path: impl Into<PathBuf>) -> Self[src]

Creates a new Svg that will display the contents of the file at the provided path.

pub fn width(self, width: Length) -> Self[src]

Sets the width of the Svg.

pub fn height(self, height: Length) -> Self[src]

Sets the height of the Svg.

Trait Implementations

impl Clone for Svg[src]

impl Debug for Svg[src]

impl<'a, Message, Renderer> From<Svg> for Element<'a, Message, Renderer> where
    Renderer: Renderer
[src]

impl<Message, Renderer> Widget<Message, Renderer> for Svg where
    Renderer: Renderer
[src]

Auto Trait Implementations

impl RefUnwindSafe for Svg

impl Send for Svg

impl Sync for Svg

impl Unpin for Svg

impl UnwindSafe for Svg

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.

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