pub struct ActionEntity {
pub action: Option<ActionDto>,
pub can_read: Option<bool>,
pub id: Option<i32>,
pub source_id: Option<String>,
pub timestamp: Option<String>,
}Fields§
§action: Option<ActionDto>§can_read: Option<bool>§id: Option<i32>§source_id: Option<String>§timestamp: Option<String>Trait Implementations§
Source§impl Clone for ActionEntity
impl Clone for ActionEntity
Source§fn clone(&self) -> ActionEntity
fn clone(&self) -> ActionEntity
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 ActionEntity
impl Debug for ActionEntity
Source§impl Default for ActionEntity
impl Default for ActionEntity
Source§fn default() -> ActionEntity
fn default() -> ActionEntity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionEntity
impl<'de> Deserialize<'de> for ActionEntity
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 From<ActionEntity> for ActionEntity
impl From<ActionEntity> for ActionEntity
Source§fn from(v: ActionEntity) -> Self
fn from(v: ActionEntity) -> Self
Converts to this type from the input type.
Source§impl From<ActionEntity> for ActionEntity
impl From<ActionEntity> for ActionEntity
Source§fn from(v: ActionEntity) -> Self
fn from(v: ActionEntity) -> Self
Converts to this type from the input type.
Source§impl From<ActionEntity> for ActionEntity
impl From<ActionEntity> for ActionEntity
Source§fn from(v: ActionEntity) -> Self
fn from(v: ActionEntity) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ActionEntity
impl RefUnwindSafe for ActionEntity
impl Send for ActionEntity
impl Sync for ActionEntity
impl Unpin for ActionEntity
impl UnsafeUnpin for ActionEntity
impl UnwindSafe for ActionEntity
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