pub struct ExportSubscriptionsRequestBody {
pub extra_fields: Option<Vec<String>>,
pub last_active_since: Option<String>,
pub segment_name: Option<String>,
}Fields§
§extra_fields: Option<Vec<String>>Additional fields that you wish to include. Currently supports location, country, rooted, notification_types, ip, external_user_id, web_auth, and web_p256.
last_active_since: Option<String>Export all devices with a last_active timestamp greater than this time. Unixtime in seconds.
segment_name: Option<String>Export all devices belonging to the segment.
Implementations§
Trait Implementations§
Source§impl Clone for ExportSubscriptionsRequestBody
impl Clone for ExportSubscriptionsRequestBody
Source§fn clone(&self) -> ExportSubscriptionsRequestBody
fn clone(&self) -> ExportSubscriptionsRequestBody
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 Default for ExportSubscriptionsRequestBody
impl Default for ExportSubscriptionsRequestBody
Source§fn default() -> ExportSubscriptionsRequestBody
fn default() -> ExportSubscriptionsRequestBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportSubscriptionsRequestBody
impl<'de> Deserialize<'de> for ExportSubscriptionsRequestBody
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 ExportSubscriptionsRequestBody
impl PartialEq for ExportSubscriptionsRequestBody
Source§fn eq(&self, other: &ExportSubscriptionsRequestBody) -> bool
fn eq(&self, other: &ExportSubscriptionsRequestBody) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExportSubscriptionsRequestBody
Auto Trait Implementations§
impl Freeze for ExportSubscriptionsRequestBody
impl RefUnwindSafe for ExportSubscriptionsRequestBody
impl Send for ExportSubscriptionsRequestBody
impl Sync for ExportSubscriptionsRequestBody
impl Unpin for ExportSubscriptionsRequestBody
impl UnwindSafe for ExportSubscriptionsRequestBody
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