Struct fusionauth_rust_client::models::action_data::ActionData
source · pub struct ActionData {
pub actionee_user_id: Option<Uuid>,
pub actioner_user_id: Option<Uuid>,
pub application_ids: Option<Vec<Uuid>>,
pub comment: Option<String>,
pub email_user: Option<bool>,
pub expiry: Option<i64>,
pub notify_user: Option<bool>,
pub option: Option<String>,
pub reason_id: Option<Uuid>,
pub user_action_id: Option<Uuid>,
}
Fields§
§actionee_user_id: Option<Uuid>
§actioner_user_id: Option<Uuid>
§application_ids: Option<Vec<Uuid>>
§comment: Option<String>
§email_user: Option<bool>
§expiry: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
notify_user: Option<bool>
§option: Option<String>
§reason_id: Option<Uuid>
§user_action_id: Option<Uuid>
Implementations§
source§impl ActionData
impl ActionData
pub fn new() -> ActionData
Trait Implementations§
source§impl Clone for ActionData
impl Clone for ActionData
source§fn clone(&self) -> ActionData
fn clone(&self) -> ActionData
Returns a copy 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 ActionData
impl Debug for ActionData
source§impl Default for ActionData
impl Default for ActionData
source§fn default() -> ActionData
fn default() -> ActionData
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ActionData
impl<'de> Deserialize<'de> for ActionData
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 ActionData
impl PartialEq for ActionData
source§fn eq(&self, other: &ActionData) -> bool
fn eq(&self, other: &ActionData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ActionData
impl Serialize for ActionData
impl StructuralPartialEq for ActionData
Auto Trait Implementations§
impl RefUnwindSafe for ActionData
impl Send for ActionData
impl Sync for ActionData
impl Unpin for ActionData
impl UnwindSafe for ActionData
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