#[repr(u8)]pub enum SuccessReplyReason {
Auto = 0,
Manual = 1,
Unsupported = 255,
}
Expand description
Reason of success reply creation.
Variants§
Auto = 0
Success reply was created by system automatically.
Manual = 1
Success reply was created by actor manually.
Unsupported = 255
Unsupported reason of success reply. Variant exists for backward compatibility.
Trait Implementations§
source§impl Clone for SuccessReplyReason
impl Clone for SuccessReplyReason
source§fn clone(&self) -> SuccessReplyReason
fn clone(&self) -> SuccessReplyReason
Returns a copy 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 SuccessReplyReason
impl Debug for SuccessReplyReason
source§impl Default for SuccessReplyReason
impl Default for SuccessReplyReason
source§fn default() -> SuccessReplyReason
fn default() -> SuccessReplyReason
Returns the “default value” for a type. Read more
source§impl Display for SuccessReplyReason
impl Display for SuccessReplyReason
source§impl From<SuccessReplyReason> for ReplyCode
impl From<SuccessReplyReason> for ReplyCode
source§fn from(original: SuccessReplyReason) -> ReplyCode
fn from(original: SuccessReplyReason) -> ReplyCode
Converts to this type from the input type.
source§impl Hash for SuccessReplyReason
impl Hash for SuccessReplyReason
source§impl Ord for SuccessReplyReason
impl Ord for SuccessReplyReason
source§fn cmp(&self, other: &SuccessReplyReason) -> Ordering
fn cmp(&self, other: &SuccessReplyReason) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for SuccessReplyReason
impl PartialEq for SuccessReplyReason
source§fn eq(&self, other: &SuccessReplyReason) -> bool
fn eq(&self, other: &SuccessReplyReason) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for SuccessReplyReason
impl PartialOrd for SuccessReplyReason
source§fn partial_cmp(&self, other: &SuccessReplyReason) -> Option<Ordering>
fn partial_cmp(&self, other: &SuccessReplyReason) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for SuccessReplyReason
impl Eq for SuccessReplyReason
impl StructuralEq for SuccessReplyReason
impl StructuralPartialEq for SuccessReplyReason
Auto Trait Implementations§
impl RefUnwindSafe for SuccessReplyReason
impl Send for SuccessReplyReason
impl Sync for SuccessReplyReason
impl Unpin for SuccessReplyReason
impl UnwindSafe for SuccessReplyReason
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