pub unsafe trait CustomBinaryView: 'static + BinaryViewBase + Sync + Sized {
    type Args: Send;

    // Required methods
    fn new(handle: &BinaryView, args: &Self::Args) -> Result<Self>;
    fn init(&mut self, args: Self::Args) -> Result<()>;
}

Required Associated Types§

Required Methods§

source

fn new(handle: &BinaryView, args: &Self::Args) -> Result<Self>

source

fn init(&mut self, args: Self::Args) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§