pub struct Show { /* private fields */ }

Implementations§

Source§

impl Show

Source

pub fn parse_base(bytes: &[u8]) -> (usize, Self)

Source

pub fn parse_colors(bytes: &[u8]) -> (usize, Self)

Source

pub fn parse_delay(bytes: &[u8]) -> (usize, Self)

Source

pub fn parse_range(bytes: &[u8]) -> (usize, Self)

Source

pub fn parse_color_values(bytes: &[u8]) -> (usize, Self)

Source

pub fn parse_zoom(bytes: &[u8]) -> (usize, Self)

Source

pub fn parse_free_transform(bytes: &[u8]) -> (usize, Self)

Source

pub fn options(&self) -> &Options

Source

pub fn options_mut(&mut self) -> &mut Options

Source

pub fn picture(&self) -> u32

Source

pub fn picture_mut(&mut self) -> &mut u32

Source

pub fn process_time(&self) -> u32

Source

pub fn process_time_mut(&mut self) -> &mut u32

Source

pub fn division_width(&self) -> u32

Source

pub fn division_width_mut(&mut self) -> &mut u32

Source

pub fn division_height(&self) -> u32

Source

pub fn division_height_mut(&mut self) -> &mut u32

Source

pub fn pattern(&self) -> u32

Source

pub fn pattern_mut(&mut self) -> &mut u32

Source

pub fn opacity(&self) -> u32

Source

pub fn opacity_mut(&mut self) -> &mut u32

Source

pub fn zoom(&self) -> u32

Source

pub fn zoom_mut(&mut self) -> &mut u32

Source

pub fn angle(&self) -> u32

Source

pub fn angle_mut(&mut self) -> &mut u32

Source

pub fn state(&self) -> &State

Source

pub fn state_mut(&mut self) -> &mut State

Source

pub fn filename(&self) -> &Option<U32OrString>

Source

pub fn filename_mut(&mut self) -> &mut Option<U32OrString>

Source

pub fn string(&self) -> &Option<String>

Source

pub fn string_mut(&mut self) -> &mut Option<String>

Auto Trait Implementations§

§

impl Freeze for Show

§

impl RefUnwindSafe for Show

§

impl Send for Show

§

impl Sync for Show

§

impl Unpin for Show

§

impl UnwindSafe for Show

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.