pub struct ActivityItem {
pub key: String,
pub client_name: String,
pub activity_type: String,
pub previous_value: String,
pub current_value: String,
}
Fields§
§key: String
§client_name: String
§activity_type: String
§previous_value: String
§current_value: String
Implementations§
Source§impl ActivityItem
impl ActivityItem
pub const READ: &'static str = "READ"
pub const INITIALISED: &'static str = "INITIALISED"
pub const WRITE: &'static str = "WRITE"
pub const ACCESSED: &'static str = "ACCESSED"
pub const ACCESS_DENIED: &'static str = "ACCESS_DENIED"
pub const NO_KEY: &'static str = "NO_KEY"
pub const NO_OVERWRITE: &'static str = "NO_OVERWRITE"
pub const UNSET: &'static str = "UNSET"
Trait Implementations§
Source§impl Clone for ActivityItem
impl Clone for ActivityItem
Source§fn clone(&self) -> ActivityItem
fn clone(&self) -> ActivityItem
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 ActivityItem
impl Debug for ActivityItem
Source§impl Default for ActivityItem
impl Default for ActivityItem
Source§impl<'de> Deserialize<'de> for ActivityItem
impl<'de> Deserialize<'de> for ActivityItem
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 ActivityItem
impl PartialEq for ActivityItem
Source§impl Serialize for ActivityItem
impl Serialize for ActivityItem
impl Message for ActivityItem
impl StructuralPartialEq for ActivityItem
Auto Trait Implementations§
impl Freeze for ActivityItem
impl RefUnwindSafe for ActivityItem
impl Send for ActivityItem
impl Sync for ActivityItem
impl Unpin for ActivityItem
impl UnwindSafe for ActivityItem
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