[][src]Trait netlink_packet_audit::traits::ParseableParametrized

pub trait ParseableParametrized<T, P> {
    fn parse_with_param(buf: &T, params: P) -> Result<Self, DecodeError>;
}

A Parseable type can be used to deserialize data into the target type T for which it is implemented.

Required methods

fn parse_with_param(buf: &T, params: P) -> Result<Self, DecodeError>

Deserialize the current type.

Loading content...

Implementors

impl<'a, T: AsRef<[u8]> + ?Sized> ParseableParametrized<AuditBuffer<&'a T>, u16> for AuditMessage[src]

Loading content...