pub struct SyncResponsePayload {
pub agent_user_id: Option<String>,
pub devices: Option<Vec<Device>>,
}Expand description
Payload containing device information.
This type is not used in any activity, and only used as part of another schema.
Fields§
§agent_user_id: Option<String>Third-party user ID
devices: Option<Vec<Device>>Devices associated with the third-party user.
Trait Implementations§
Source§impl Clone for SyncResponsePayload
impl Clone for SyncResponsePayload
Source§fn clone(&self) -> SyncResponsePayload
fn clone(&self) -> SyncResponsePayload
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 SyncResponsePayload
impl Debug for SyncResponsePayload
Source§impl Default for SyncResponsePayload
impl Default for SyncResponsePayload
Source§fn default() -> SyncResponsePayload
fn default() -> SyncResponsePayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SyncResponsePayload
impl<'de> Deserialize<'de> for SyncResponsePayload
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
impl Part for SyncResponsePayload
Auto Trait Implementations§
impl Freeze for SyncResponsePayload
impl RefUnwindSafe for SyncResponsePayload
impl Send for SyncResponsePayload
impl Sync for SyncResponsePayload
impl Unpin for SyncResponsePayload
impl UnsafeUnpin for SyncResponsePayload
impl UnwindSafe for SyncResponsePayload
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