jxl_oxide_common

Trait Bundle

Source
pub trait Bundle<Ctx = ()>: Sized {
    type Error;

    // Required method
    fn parse(
        bitstream: &mut Bitstream<'_>,
        ctx: Ctx,
    ) -> Result<Self, Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn parse(bitstream: &mut Bitstream<'_>, ctx: Ctx) -> Result<Self, Self::Error>

Parses a value from the bitstream with the given context.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T, Ctx> Bundle<Ctx> for Option<T>
where T: Bundle<Ctx>,

Source§

type Error = <T as Bundle<Ctx>>::Error

Source§

fn parse(bitstream: &mut Bitstream<'_>, ctx: Ctx) -> Result<Self, Self::Error>

Implementors§

Source§

impl<Ctx> Bundle<Ctx> for Name