pub struct ActionOrigin {
pub client_id: String,
pub client_seq: i64,
}Expand description
Identifies the client that originally dispatched an action.
Fields§
§client_id: String§client_seq: i64Trait Implementations§
Source§impl Clone for ActionOrigin
impl Clone for ActionOrigin
Source§fn clone(&self) -> ActionOrigin
fn clone(&self) -> ActionOrigin
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActionOrigin
impl Debug for ActionOrigin
Source§impl<'de> Deserialize<'de> for ActionOrigin
impl<'de> Deserialize<'de> for ActionOrigin
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 ActionOrigin
impl PartialEq for ActionOrigin
Source§fn eq(&self, other: &ActionOrigin) -> bool
fn eq(&self, other: &ActionOrigin) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActionOrigin
impl Serialize for ActionOrigin
impl StructuralPartialEq for ActionOrigin
Auto Trait Implementations§
impl Freeze for ActionOrigin
impl RefUnwindSafe for ActionOrigin
impl Send for ActionOrigin
impl Sync for ActionOrigin
impl Unpin for ActionOrigin
impl UnsafeUnpin for ActionOrigin
impl UnwindSafe for ActionOrigin
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