pub enum State {
Base(Base),
Colors(Colors),
Delay(Delay),
Range(Range),
ColorValues(ColorValues),
Zoom(Zoom),
FreeTransform(FreeTransform),
}Variants§
Base(Base)
Colors(Colors)
Delay(Delay)
Range(Range)
ColorValues(ColorValues)
Zoom(Zoom)
FreeTransform(FreeTransform)
Implementations§
Source§impl State
impl State
pub fn parse_base(bytes: &[u8], options: &Options) -> (usize, Option<u32>, Self)
pub fn parse_colors(bytes: &[u8], _: &Options) -> (usize, Option<u32>, Self)
pub fn parse_delay(bytes: &[u8], _: &Options) -> (usize, Option<u32>, State)
pub fn parse_range(bytes: &[u8], _: &Options) -> (usize, Option<u32>, State)
pub fn parse_color_values( bytes: &[u8], _: &Options, ) -> (usize, Option<u32>, State)
pub fn parse_zoom(bytes: &[u8], _: &Options) -> (usize, Option<u32>, State)
pub fn parse_free_transform( bytes: &[u8], _: &Options, ) -> (usize, Option<u32>, State)
Auto Trait Implementations§
impl Freeze for State
impl RefUnwindSafe for State
impl Send for State
impl Sync for State
impl Unpin for State
impl UnwindSafe for State
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more