pub struct AccountCustomFieldList {
pub json: Option<bool>,
pub object: Option<String>,
pub object_type: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Expand description
AccountCustomFieldList : accountCustomFieldList is a command that retrieves the account custom fields
Fields§
§json: Option<bool>Set output format to JSON
object: Option<String>The object to filter by the custom fields in: body
object_type: Option<String>The object type to filter by the custom fields in: body
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 AccountCustomFieldList
impl AccountCustomFieldList
Sourcepub fn new() -> AccountCustomFieldList
pub fn new() -> AccountCustomFieldList
accountCustomFieldList is a command that retrieves the account custom fields
Trait Implementations§
Source§impl Clone for AccountCustomFieldList
impl Clone for AccountCustomFieldList
Source§fn clone(&self) -> AccountCustomFieldList
fn clone(&self) -> AccountCustomFieldList
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 AccountCustomFieldList
impl Debug for AccountCustomFieldList
Source§impl Default for AccountCustomFieldList
impl Default for AccountCustomFieldList
Source§fn default() -> AccountCustomFieldList
fn default() -> AccountCustomFieldList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountCustomFieldList
impl<'de> Deserialize<'de> for AccountCustomFieldList
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 AccountCustomFieldList
impl PartialEq for AccountCustomFieldList
Source§fn eq(&self, other: &AccountCustomFieldList) -> bool
fn eq(&self, other: &AccountCustomFieldList) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AccountCustomFieldList
impl Serialize for AccountCustomFieldList
impl StructuralPartialEq for AccountCustomFieldList
Auto Trait Implementations§
impl Freeze for AccountCustomFieldList
impl RefUnwindSafe for AccountCustomFieldList
impl Send for AccountCustomFieldList
impl Sync for AccountCustomFieldList
impl Unpin for AccountCustomFieldList
impl UnsafeUnpin for AccountCustomFieldList
impl UnwindSafe for AccountCustomFieldList
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