Trait WithNewXHeader

pub trait WithNewXHeader: Sized + NewPoint {
    // Provided method
    fn with_xheader(self, nethead: &dyn SetXHeader) -> Self { ... }
}
Expand description

Enable chain calling lk_linkpoint(..).with_net_header(&XFlags…)

Provided Methods§

fn with_xheader(self, nethead: &dyn SetXHeader) -> Self

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.

Implementors§

§

impl<T> WithNewXHeader for T
where T: NewPoint,