pub struct PermissionUpdatedProps {
pub id: String,
pub metadata: HashMap<String, Value>,
pub session_id: String,
pub time: PermissionTime,
pub title: String,
}Expand description
Properties for EventListResponse::PermissionUpdated.
Fields§
§id: StringPermission identifier.
metadata: HashMap<String, Value>Arbitrary metadata map.
session_id: StringSession the permission belongs to.
time: PermissionTimeTimestamps.
title: StringHuman-readable title.
Trait Implementations§
Source§impl Clone for PermissionUpdatedProps
impl Clone for PermissionUpdatedProps
Source§fn clone(&self) -> PermissionUpdatedProps
fn clone(&self) -> PermissionUpdatedProps
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 PermissionUpdatedProps
impl Debug for PermissionUpdatedProps
Source§impl<'de> Deserialize<'de> for PermissionUpdatedProps
impl<'de> Deserialize<'de> for PermissionUpdatedProps
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 PermissionUpdatedProps
impl PartialEq for PermissionUpdatedProps
Source§impl Serialize for PermissionUpdatedProps
impl Serialize for PermissionUpdatedProps
impl StructuralPartialEq for PermissionUpdatedProps
Auto Trait Implementations§
impl Freeze for PermissionUpdatedProps
impl RefUnwindSafe for PermissionUpdatedProps
impl Send for PermissionUpdatedProps
impl Sync for PermissionUpdatedProps
impl Unpin for PermissionUpdatedProps
impl UnwindSafe for PermissionUpdatedProps
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