pub struct ExportPlayersRequestBody {
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§
Source§impl ExportPlayersRequestBody
impl ExportPlayersRequestBody
pub fn new() -> ExportPlayersRequestBody
Trait Implementations§
Source§impl Clone for ExportPlayersRequestBody
impl Clone for ExportPlayersRequestBody
Source§fn clone(&self) -> ExportPlayersRequestBody
fn clone(&self) -> ExportPlayersRequestBody
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 ExportPlayersRequestBody
impl Debug for ExportPlayersRequestBody
Source§impl Default for ExportPlayersRequestBody
impl Default for ExportPlayersRequestBody
Source§fn default() -> ExportPlayersRequestBody
fn default() -> ExportPlayersRequestBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportPlayersRequestBody
impl<'de> Deserialize<'de> for ExportPlayersRequestBody
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 ExportPlayersRequestBody
impl PartialEq for ExportPlayersRequestBody
Source§impl Serialize for ExportPlayersRequestBody
impl Serialize for ExportPlayersRequestBody
impl StructuralPartialEq for ExportPlayersRequestBody
Auto Trait Implementations§
impl Freeze for ExportPlayersRequestBody
impl RefUnwindSafe for ExportPlayersRequestBody
impl Send for ExportPlayersRequestBody
impl Sync for ExportPlayersRequestBody
impl Unpin for ExportPlayersRequestBody
impl UnwindSafe for ExportPlayersRequestBody
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