pub struct DescribeAssoc {
pub assoc_id: String,
pub json: Option<bool>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Fields§
§assoc_id: StringThe association 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 DescribeAssoc
impl DescribeAssoc
pub fn new(assoc_id: String) -> DescribeAssoc
Trait Implementations§
Source§impl Clone for DescribeAssoc
impl Clone for DescribeAssoc
Source§fn clone(&self) -> DescribeAssoc
fn clone(&self) -> DescribeAssoc
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 DescribeAssoc
impl Debug for DescribeAssoc
Source§impl Default for DescribeAssoc
impl Default for DescribeAssoc
Source§fn default() -> DescribeAssoc
fn default() -> DescribeAssoc
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeAssoc
impl<'de> Deserialize<'de> for DescribeAssoc
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 DescribeAssoc
impl PartialEq for DescribeAssoc
Source§fn eq(&self, other: &DescribeAssoc) -> bool
fn eq(&self, other: &DescribeAssoc) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DescribeAssoc
impl Serialize for DescribeAssoc
impl StructuralPartialEq for DescribeAssoc
Auto Trait Implementations§
impl Freeze for DescribeAssoc
impl RefUnwindSafe for DescribeAssoc
impl Send for DescribeAssoc
impl Sync for DescribeAssoc
impl Unpin for DescribeAssoc
impl UnsafeUnpin for DescribeAssoc
impl UnwindSafe for DescribeAssoc
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