Home
last modified time | relevance | path

Searched refs:Unauthenticated (Results 1 – 1 of 1) sorted by relevance

/tonic/tonic/src/
H A Dstatus.rs109 Unauthenticated = 16, enumerator
147 Code::Unauthenticated => "The request does not have valid authentication credentials", in description()
305 Status::new(Code::Unauthenticated, message) in unauthenticated()
751 http::StatusCode::UNAUTHORIZED => Code::Unauthenticated, in infer_grpc_status()
811 (b'1', b'6') => Code::Unauthenticated, in from_bytes()
836 Code::Unauthenticated => HeaderValue::from_static("16"), in to_header_value()
865 16 => Code::Unauthenticated, in from()
956 for i in 0..(Code::Unauthenticated as i32) { in code_from_i32()
992 assert_eq!(Status::unauthenticated("").code(), Code::Unauthenticated); in constructors()