Trait ProstCommunicableOwned

Source
pub trait ProstCommunicableOwned<T>{
    const COMMUNICATION_VARIANT: T;

    // Provided methods
    fn to_communication_via_prost(self) -> Communication<T> { ... }
    fn try_from_communication(
        communication: &Communication<T>,
    ) -> Result<Self, DecodeError> { ... }
}

Required Associated Constants§

Provided Methods§

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§