pub struct MemberElements {
pub account_guid: Option<String>,
pub member_guid: Option<String>,
pub user_guid: Option<String>,
}Expand description
MemberElements
JSON schema
{
"properties": {
"account_guid": {
"examples": [
"ACT-283132a4-1401-486a-909e-1605f1623d11"
],
"type": "string"
},
"member_guid": {
"examples": [
"MBR-54feffb9-8474-47bd-8442-de003910113a"
],
"type": "string"
},
"user_guid": {
"examples": [
"USR-101ad774-288b-44ed-ad16-da87d522ea20"
],
"type": "string"
}
}
}Fields§
§account_guid: Option<String>§member_guid: Option<String>§user_guid: Option<String>Trait Implementations§
Source§impl Clone for MemberElements
impl Clone for MemberElements
Source§fn clone(&self) -> MemberElements
fn clone(&self) -> MemberElements
Returns a duplicate of the value. Read more
1.0.0 · 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 MemberElements
impl Debug for MemberElements
Source§impl Default for MemberElements
impl Default for MemberElements
Source§impl<'de> Deserialize<'de> for MemberElements
impl<'de> Deserialize<'de> for MemberElements
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 From<&MemberElements> for MemberElements
impl From<&MemberElements> for MemberElements
Source§fn from(value: &MemberElements) -> Self
fn from(value: &MemberElements) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MemberElements
impl RefUnwindSafe for MemberElements
impl Send for MemberElements
impl Sync for MemberElements
impl Unpin for MemberElements
impl UnwindSafe for MemberElements
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