Lines Matching refs:ErrorCauseCode
8 pub(crate) struct ErrorCauseCode(pub(crate) u16); struct
10 pub(crate) const INVALID_STREAM_IDENTIFIER: ErrorCauseCode = ErrorCauseCode(1);
11 pub(crate) const MISSING_MANDATORY_PARAMETER: ErrorCauseCode = ErrorCauseCode(2);
12 pub(crate) const STALE_COOKIE_ERROR: ErrorCauseCode = ErrorCauseCode(3);
13 pub(crate) const OUT_OF_RESOURCE: ErrorCauseCode = ErrorCauseCode(4);
14 pub(crate) const UNRESOLVABLE_ADDRESS: ErrorCauseCode = ErrorCauseCode(5);
15 pub(crate) const UNRECOGNIZED_CHUNK_TYPE: ErrorCauseCode = ErrorCauseCode(6);
16 pub(crate) const INVALID_MANDATORY_PARAMETER: ErrorCauseCode = ErrorCauseCode(7);
17 pub(crate) const UNRECOGNIZED_PARAMETERS: ErrorCauseCode = ErrorCauseCode(8);
18 pub(crate) const NO_USER_DATA: ErrorCauseCode = ErrorCauseCode(9);
19 pub(crate) const COOKIE_RECEIVED_WHILE_SHUTTING_DOWN: ErrorCauseCode = ErrorCauseCode(10);
20 pub(crate) const RESTART_OF_AN_ASSOCIATION_WITH_NEW_ADDRESSES: ErrorCauseCode = ErrorCauseCode(11);
21 pub(crate) const USER_INITIATED_ABORT: ErrorCauseCode = ErrorCauseCode(12);
22 pub(crate) const PROTOCOL_VIOLATION: ErrorCauseCode = ErrorCauseCode(13);
24 impl fmt::Display for ErrorCauseCode { implementation
52 pub(crate) code: ErrorCauseCode,
97 let code = ErrorCauseCode(reader.get_u16()); in unmarshal()
132 pub(crate) fn error_cause_code(&self) -> ErrorCauseCode { in error_cause_code() argument