pub trait KnownAttributewhere
    Self: Sized,{
    // Required methods
    fn decode(bytes: Bytes, constant_pool: &ConstantPool) -> Result<Self>;
    fn id() -> &'static str;
}

Required Methods§

source

fn decode(bytes: Bytes, constant_pool: &ConstantPool) -> Result<Self>

source

fn id() -> &'static str

Object Safety§

This trait is not object safe.

Implementors§