pub enum PushResponse {
Approved,
Denied,
Timeout,
}Expand description
Push response
Variants§
Trait Implementations§
Source§impl Clone for PushResponse
impl Clone for PushResponse
Source§fn clone(&self) -> PushResponse
fn clone(&self) -> PushResponse
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 PushResponse
impl Debug for PushResponse
Source§impl<'de> Deserialize<'de> for PushResponse
impl<'de> Deserialize<'de> for PushResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PushResponse
impl PartialEq for PushResponse
Source§fn eq(&self, other: &PushResponse) -> bool
fn eq(&self, other: &PushResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PushResponse
impl Serialize for PushResponse
impl Copy for PushResponse
impl Eq for PushResponse
impl StructuralPartialEq for PushResponse
Auto Trait Implementations§
impl Freeze for PushResponse
impl RefUnwindSafe for PushResponse
impl Send for PushResponse
impl Sync for PushResponse
impl Unpin for PushResponse
impl UnsafeUnpin for PushResponse
impl UnwindSafe for PushResponse
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