Struct html5_picture::webp::processor::SingleProcessor[][src]

pub struct SingleProcessor { /* fields omitted */ }

Resizes and converts the given input file to webp format. Every function of This instance is single threaded. Multi threading support is provided by the BatchProcessor struct.

Implementations

impl SingleProcessor[src]

pub fn new(
    params: Parameter,
    progressbar: Option<ProgressBar>
) -> Result<Self, String>
[src]

Creates a new instance of the struct.

pub fn run(&mut self) -> Result<(), String>[src]

Loads, resizes and converts the image to webp. Single threaded.

pub fn calculate_height_preserve_aspect_ratio(
    &self,
    width: u32
) -> Result<u32, String>
[src]

Resizes the image preserving the aspect ratio. Returns the new height.

pub fn get_resized_image_details(
    &self
) -> Result<Vec<ResizedImageDetails>, String>
[src]

Calculates height, width and output file name for all scaled images.

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, 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.