pub enum ExportType {
Client,
Display,
}Expand description
The export type. ‘display’ is for showing the key to the user in the UI, ‘client’ is for exporting to the client application.
JSON schema
{
"title": "ExportType",
"description": "The export type. 'display' is for showing the key to
the user in the UI, 'client' is for exporting to the client
application.",
"type": "string",
"enum": [
"client",
"display"
],
"x-stainless-model": "wallets.export_type"
}Variants§
Trait Implementations§
Source§impl Clone for ExportType
impl Clone for ExportType
Source§fn clone(&self) -> ExportType
fn clone(&self) -> ExportType
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 ExportType
Source§impl Debug for ExportType
impl Debug for ExportType
Source§impl<'de> Deserialize<'de> for ExportType
impl<'de> Deserialize<'de> for ExportType
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 ExportType
impl Display for ExportType
impl Eq for ExportType
Source§impl From<&ExportType> for ExportType
impl From<&ExportType> for ExportType
Source§fn from(value: &ExportType) -> Self
fn from(value: &ExportType) -> Self
Converts to this type from the input type.
Source§impl FromStr for ExportType
impl FromStr for ExportType
Source§impl Hash for ExportType
impl Hash for ExportType
Source§impl Ord for ExportType
impl Ord for ExportType
Source§fn cmp(&self, other: &ExportType) -> Ordering
fn cmp(&self, other: &ExportType) -> 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 ExportType
impl PartialEq for ExportType
Source§fn eq(&self, other: &ExportType) -> bool
fn eq(&self, other: &ExportType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ExportType
impl PartialOrd for ExportType
Source§impl Serialize for ExportType
impl Serialize for ExportType
impl StructuralPartialEq for ExportType
Source§impl TryFrom<&String> for ExportType
impl TryFrom<&String> for ExportType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ExportType
impl TryFrom<&str> for ExportType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ExportType
impl TryFrom<String> for ExportType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ExportType
impl RefUnwindSafe for ExportType
impl Send for ExportType
impl Sync for ExportType
impl Unpin for ExportType
impl UnsafeUnpin for ExportType
impl UnwindSafe for ExportType
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