Enum onesignal_rust_api::models::app::ApnsEnvType
source · pub enum ApnsEnvType {
Sandbox,
Production,
}
Expand description
iOS: Either sandbox or production
Variants§
Trait Implementations§
source§impl Clone for ApnsEnvType
impl Clone for ApnsEnvType
source§fn clone(&self) -> ApnsEnvType
fn clone(&self) -> ApnsEnvType
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 ApnsEnvType
impl Debug for ApnsEnvType
source§impl Default for ApnsEnvType
impl Default for ApnsEnvType
source§fn default() -> ApnsEnvType
fn default() -> ApnsEnvType
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ApnsEnvType
impl<'de> Deserialize<'de> for ApnsEnvType
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 Hash for ApnsEnvType
impl Hash for ApnsEnvType
source§impl Ord for ApnsEnvType
impl Ord for ApnsEnvType
source§fn cmp(&self, other: &ApnsEnvType) -> Ordering
fn cmp(&self, other: &ApnsEnvType) -> 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<ApnsEnvType> for ApnsEnvType
impl PartialEq<ApnsEnvType> for ApnsEnvType
source§fn eq(&self, other: &ApnsEnvType) -> bool
fn eq(&self, other: &ApnsEnvType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ApnsEnvType> for ApnsEnvType
impl PartialOrd<ApnsEnvType> for ApnsEnvType
source§fn partial_cmp(&self, other: &ApnsEnvType) -> Option<Ordering>
fn partial_cmp(&self, other: &ApnsEnvType) -> 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 moresource§impl Serialize for ApnsEnvType
impl Serialize for ApnsEnvType
impl Copy for ApnsEnvType
impl Eq for ApnsEnvType
impl StructuralEq for ApnsEnvType
impl StructuralPartialEq for ApnsEnvType
Auto Trait Implementations§
impl RefUnwindSafe for ApnsEnvType
impl Send for ApnsEnvType
impl Sync for ApnsEnvType
impl Unpin for ApnsEnvType
impl UnwindSafe for ApnsEnvType
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.