pub type IpSendFrameError<S> = ErrorAndSerializer<IpSendFrameErrorReason, S>;Expand description
Send errors observed at or above the IP layer that carry a serializer.
Aliased Type§
pub struct IpSendFrameError<S> {
pub error: IpSendFrameErrorReason,
pub serializer: S,
}Fields§
§error: IpSendFrameErrorReasonThe error observed.
serializer: SThe serializer accompanying the error.