Struct onesignal_rust_api::models::export_players_request_body::ExportPlayersRequestBody
source · [−]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 al ldevices belonging to the segment.
Implementations
sourceimpl ExportPlayersRequestBody
impl ExportPlayersRequestBody
pub fn new() -> ExportPlayersRequestBody
Trait Implementations
sourceimpl Clone for ExportPlayersRequestBody
impl Clone for ExportPlayersRequestBody
sourcefn clone(&self) -> ExportPlayersRequestBody
fn clone(&self) -> ExportPlayersRequestBody
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ExportPlayersRequestBody
impl Debug for ExportPlayersRequestBody
sourceimpl Default for ExportPlayersRequestBody
impl Default for ExportPlayersRequestBody
sourcefn default() -> ExportPlayersRequestBody
fn default() -> ExportPlayersRequestBody
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ExportPlayersRequestBody
impl<'de> Deserialize<'de> for ExportPlayersRequestBody
sourcefn 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
sourceimpl PartialEq<ExportPlayersRequestBody> for ExportPlayersRequestBody
impl PartialEq<ExportPlayersRequestBody> for ExportPlayersRequestBody
sourcefn eq(&self, other: &ExportPlayersRequestBody) -> bool
fn eq(&self, other: &ExportPlayersRequestBody) -> bool
sourceimpl Serialize for ExportPlayersRequestBody
impl Serialize for ExportPlayersRequestBody
impl StructuralPartialEq for ExportPlayersRequestBody
Auto Trait Implementations
impl RefUnwindSafe for ExportPlayersRequestBody
impl Send for ExportPlayersRequestBody
impl Sync for ExportPlayersRequestBody
impl Unpin for ExportPlayersRequestBody
impl UnwindSafe for ExportPlayersRequestBody
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more