pub struct AccountCustomFieldGet {
pub id: i64,
pub json: Option<bool>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Expand description
AccountCustomFieldGet : accountCustomFieldGet is a command that retrieves an account custom field
Fields§
§id: i64The custom field id
json: Option<bool>Set output format to JSON
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
Implementations§
Source§impl AccountCustomFieldGet
impl AccountCustomFieldGet
Sourcepub fn new(id: i64) -> AccountCustomFieldGet
pub fn new(id: i64) -> AccountCustomFieldGet
accountCustomFieldGet is a command that retrieves an account custom field
Trait Implementations§
Source§impl Clone for AccountCustomFieldGet
impl Clone for AccountCustomFieldGet
Source§fn clone(&self) -> AccountCustomFieldGet
fn clone(&self) -> AccountCustomFieldGet
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 AccountCustomFieldGet
impl Debug for AccountCustomFieldGet
Source§impl Default for AccountCustomFieldGet
impl Default for AccountCustomFieldGet
Source§fn default() -> AccountCustomFieldGet
fn default() -> AccountCustomFieldGet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountCustomFieldGet
impl<'de> Deserialize<'de> for AccountCustomFieldGet
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 AccountCustomFieldGet
impl PartialEq for AccountCustomFieldGet
Source§fn eq(&self, other: &AccountCustomFieldGet) -> bool
fn eq(&self, other: &AccountCustomFieldGet) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AccountCustomFieldGet
impl Serialize for AccountCustomFieldGet
impl StructuralPartialEq for AccountCustomFieldGet
Auto Trait Implementations§
impl Freeze for AccountCustomFieldGet
impl RefUnwindSafe for AccountCustomFieldGet
impl Send for AccountCustomFieldGet
impl Sync for AccountCustomFieldGet
impl Unpin for AccountCustomFieldGet
impl UnsafeUnpin for AccountCustomFieldGet
impl UnwindSafe for AccountCustomFieldGet
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