pub enum ICloudClientType {
ExpoIos,
Web,
}Expand description
The client type for iCloud recovery operations.
JSON schema
{
"title": "ICloudClientType",
"description": "The client type for iCloud recovery operations.",
"type": "string",
"enum": [
"expo-ios",
"web"
],
"x-stainless-model": "embedded_wallets.icloud_client_type"
}Variants§
Trait Implementations§
Source§impl Clone for ICloudClientType
impl Clone for ICloudClientType
Source§fn clone(&self) -> ICloudClientType
fn clone(&self) -> ICloudClientType
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 moreimpl Copy for ICloudClientType
Source§impl Debug for ICloudClientType
impl Debug for ICloudClientType
Source§impl<'de> Deserialize<'de> for ICloudClientType
impl<'de> Deserialize<'de> for ICloudClientType
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 Display for ICloudClientType
impl Display for ICloudClientType
impl Eq for ICloudClientType
Source§impl From<&ICloudClientType> for ICloudClientType
impl From<&ICloudClientType> for ICloudClientType
Source§fn from(value: &ICloudClientType) -> Self
fn from(value: &ICloudClientType) -> Self
Converts to this type from the input type.
Source§impl FromStr for ICloudClientType
impl FromStr for ICloudClientType
Source§impl Hash for ICloudClientType
impl Hash for ICloudClientType
Source§impl Ord for ICloudClientType
impl Ord for ICloudClientType
Source§fn cmp(&self, other: &ICloudClientType) -> Ordering
fn cmp(&self, other: &ICloudClientType) -> Ordering
1.21.0 (const: unstable) · 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 ICloudClientType
impl PartialEq for ICloudClientType
Source§fn eq(&self, other: &ICloudClientType) -> bool
fn eq(&self, other: &ICloudClientType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ICloudClientType
impl PartialOrd for ICloudClientType
Source§impl Serialize for ICloudClientType
impl Serialize for ICloudClientType
impl StructuralPartialEq for ICloudClientType
Source§impl TryFrom<&String> for ICloudClientType
impl TryFrom<&String> for ICloudClientType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ICloudClientType
impl TryFrom<&str> for ICloudClientType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ICloudClientType
impl TryFrom<String> for ICloudClientType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ICloudClientType
impl RefUnwindSafe for ICloudClientType
impl Send for ICloudClientType
impl Sync for ICloudClientType
impl Unpin for ICloudClientType
impl UnsafeUnpin for ICloudClientType
impl UnwindSafe for ICloudClientType
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