Home
last modified time | relevance | path

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

/tonic/tonic-reflection/src/server/
H A Dmod.rs254 None => Err(Status::not_found(format!("symbol '{}' not found", symbol))), in symbol_by_name()
268 None => Err(Status::not_found(format!("file '{}' not found", filename))), in file_by_filename()
H A Dv1alpha.rs57 Err(Status::not_found("extensions are not supported")) in server_reflection_info()
H A Dv1.rs57 Err(Status::not_found("extensions are not supported")) in server_reflection_info()
/tonic/tonic-health/src/
H A Dserver.rs125 return Err(Status::not_found("service not registered")); in check()
140 None => return Err(Status::not_found("service not registered")), in watch()
/tonic/tonic/src/
H A Dstatus.rs208 pub fn not_found(message: impl Into<String>) -> Status { in not_found() method
975 assert_eq!(Status::not_found("").code(), Code::NotFound); in constructors()