pub enum ReplyStatus {
Ok,
Error,
}Expand description
Status carried by a Phoenix phx_reply.
Variants§
Trait Implementations§
Source§impl Clone for ReplyStatus
impl Clone for ReplyStatus
Source§fn clone(&self) -> ReplyStatus
fn clone(&self) -> ReplyStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReplyStatus
impl Debug for ReplyStatus
Source§impl PartialEq for ReplyStatus
impl PartialEq for ReplyStatus
Source§fn eq(&self, other: &ReplyStatus) -> bool
fn eq(&self, other: &ReplyStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ReplyStatus
impl Eq for ReplyStatus
impl StructuralPartialEq for ReplyStatus
Auto Trait Implementations§
impl Freeze for ReplyStatus
impl RefUnwindSafe for ReplyStatus
impl Send for ReplyStatus
impl Sync for ReplyStatus
impl Unpin for ReplyStatus
impl UnsafeUnpin for ReplyStatus
impl UnwindSafe for ReplyStatus
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