Type Alias netstack3_ip::IpSendFrameError

source ·
pub type IpSendFrameError<S> = ErrorAndSerializer<IpSendFrameErrorReason, S>;
Expand description

Send errors observed at or above the IP layer that carry a serializer.

Aliased Type§

struct IpSendFrameError<S> {
    pub error: IpSendFrameErrorReason,
    pub serializer: S,
}

Fields§

§error: IpSendFrameErrorReason

The error observed.

§serializer: S

The serializer accompanying the error.