#[repr(u8)]pub enum TransitStatus {
Request = 0,
Accepted = 1,
Busy = 2,
Unauthorized = 3,
Forbidden = 4,
Timeout = 5,
}Expand description
Transport response status codes
Variants§
Trait Implementations§
Source§impl Clone for TransitStatus
impl Clone for TransitStatus
Source§fn clone(&self) -> TransitStatus
fn clone(&self) -> TransitStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TransitStatus
impl Debug for TransitStatus
Source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for TransitStatus
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for TransitStatus
Source§impl Default for TransitStatus
impl Default for TransitStatus
Source§fn default() -> TransitStatus
fn default() -> TransitStatus
Returns the “default value” for a type. Read more
Source§impl EncodeValue for TransitStatus
impl EncodeValue for TransitStatus
Source§impl From<TransitStatus> for AssertionValue
Available on crate feature policy only.
impl From<TransitStatus> for AssertionValue
Available on crate feature
policy only.Source§fn from(status: TransitStatus) -> Self
fn from(status: TransitStatus) -> Self
Converts to this type from the input type.
Source§impl From<TransitStatus> for TransportError
impl From<TransitStatus> for TransportError
Source§fn from(status: TransitStatus) -> Self
fn from(status: TransitStatus) -> Self
Converts to this type from the input type.
Source§impl From<TransitStatus> for WorkerRelayError
impl From<TransitStatus> for WorkerRelayError
Source§fn from(err: TransitStatus) -> Self
fn from(err: TransitStatus) -> Self
Converts to this type from the input type.
Source§impl From<WorkerRelayError> for TransitStatus
impl From<WorkerRelayError> for TransitStatus
Source§fn from(err: WorkerRelayError) -> Self
fn from(err: WorkerRelayError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TransitStatus
impl PartialEq for TransitStatus
Source§impl TryFrom<u8> for TransitStatus
impl TryFrom<u8> for TransitStatus
impl Copy for TransitStatus
impl Eq for TransitStatus
impl StructuralPartialEq for TransitStatus
Auto Trait Implementations§
impl Freeze for TransitStatus
impl RefUnwindSafe for TransitStatus
impl Send for TransitStatus
impl Sync for TransitStatus
impl Unpin for TransitStatus
impl UnsafeUnpin for TransitStatus
impl UnwindSafe for TransitStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
Source§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
Source§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
Source§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer.
Source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more