pub trait ErrorType: Decode<Self::Marker> {
    type Marker: ValueTypeMarker<Owned = Self>;
}
Expand description

Implementation of fidl_message::ErrorType.

Required Associated Types§

source

type Marker: ValueTypeMarker<Owned = Self>

The marker type.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<E: ValueTypeMarker<Owned = E> + Decode<E>> ErrorType for E

§

type Marker = E