pub type SendFrameError<S> = ErrorAndSerializer<SendFrameErrorReason, S>;
Expand description
Errors returned by SendFrameContext::send_frame
.
Aliased Type§
struct SendFrameError<S> {
pub error: SendFrameErrorReason,
pub serializer: S,
}
Fields§
§error: SendFrameErrorReason
The error observed.
serializer: S
The serializer accompanying the error.