Home
last modified time | relevance | path

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

/tonic/tonic/src/
H A Dstatus.rs79 AlreadyExists = 6, enumerator
133 Code::AlreadyExists => "Some entity that we attempted to create already exists", in description()
215 Status::new(Code::AlreadyExists, message) in already_exists()
698 ErrorKind::AlreadyExists => Code::AlreadyExists, in from()
798 b'6' => Code::AlreadyExists, in from_bytes()
826 Code::AlreadyExists => HeaderValue::from_static("6"), in to_header_value()
855 6 => Code::AlreadyExists, in from()
976 assert_eq!(Status::already_exists("").code(), Code::AlreadyExists); in constructors()