Trait CompressArgs

Source
pub trait CompressArgs {
    // Required method
    fn get(self) -> (Astr, Arc<[u8]>, i32);
}

Required Methods§

Source

fn get(self) -> (Astr, Arc<[u8]>, i32)

Implementations on Foreign Types§

Source§

impl<T: Into<Arc<[u8]>>, F: Into<Astr>> CompressArgs for (F, T)

Source§

fn get(self) -> (Astr, Arc<[u8]>, i32)

Source§

impl<T: Into<Arc<[u8]>>, F: Into<Astr>, C> CompressArgs for (F, T, C)
where i32: Cast<C>,

Source§

fn get(self) -> (Astr, Arc<[u8]>, i32)

Implementors§