Struct libwebp_image::WebpDecoder [−][src]
Implementations
impl<R: Read> WebpDecoder<R>[src]
pub fn new(reader: R) -> ImageResult<Self>[src]
pub fn new_rgba(reader: R) -> ImageResult<Self>[src]
pub fn new_rgb(reader: R) -> ImageResult<Self>[src]
Trait Implementations
impl<R: Debug + Read> Debug for WebpDecoder<R>[src]
impl<'a, R: Read + 'a> ImageDecoder<'a> for WebpDecoder<R>[src]
type Reader = WebpReader<R>
The type of reader produced by into_reader.
fn dimensions(&self) -> (u32, u32)[src]
fn color_type(&self) -> ColorType[src]
fn into_reader(mut self: Self) -> ImageResult<Self::Reader>[src]
pub fn original_color_type(&self) -> ExtendedColorType[src]
pub fn total_bytes(&self) -> u64[src]
pub fn scanline_bytes(&self) -> u64[src]
pub fn read_image(self, buf: &mut [u8]) -> Result<(), ImageError>[src]
pub fn read_image_with_progress<F>(
self,
buf: &mut [u8],
progress_callback: F
) -> Result<(), ImageError> where
F: Fn(Progress), [src]
self,
buf: &mut [u8],
progress_callback: F
) -> Result<(), ImageError> where
F: Fn(Progress),
Auto Trait Implementations
impl<R> RefUnwindSafe for WebpDecoder<R> where
R: RefUnwindSafe, [src]
R: RefUnwindSafe,
impl<R> Send for WebpDecoder<R> where
R: Send, [src]
R: Send,
impl<R> Sync for WebpDecoder<R> where
R: Sync, [src]
R: Sync,
impl<R> Unpin for WebpDecoder<R> where
R: Unpin, [src]
R: Unpin,
impl<R> UnwindSafe for WebpDecoder<R> where
R: UnwindSafe, [src]
R: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,