Preview of the proposed up-rust native-frame-model branch (up-rust b6b99c6d, up-spec f0e9b17) — not released documentation. branch · write-up

Trait UWireDecode

Source
pub trait UWireDecode<'a, T>: DecodePayload<'a, T> { }
Expand description

Wire-level borrowed decode helper alias for existing payload codecs.

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§

Source§

impl<'a, C, T> UWireDecode<'a, T> for C
where C: DecodePayload<'a, T>,