pub struct PermissionReplyResponse {
pub session_id: Option<String>,
pub request_id: String,
pub reply: PermissionReply,
pub extra: Value,
}Expand description
Response from permission reply endpoint.
Fields§
§session_id: Option<String>Session ID.
request_id: StringRequest ID that was replied to.
reply: PermissionReplyThe reply that was sent.
extra: ValueAdditional fields.
Trait Implementations§
Source§impl Clone for PermissionReplyResponse
impl Clone for PermissionReplyResponse
Source§fn clone(&self) -> PermissionReplyResponse
fn clone(&self) -> PermissionReplyResponse
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 PermissionReplyResponse
impl Debug for PermissionReplyResponse
Source§impl<'de> Deserialize<'de> for PermissionReplyResponse
impl<'de> Deserialize<'de> for PermissionReplyResponse
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
Auto Trait Implementations§
impl Freeze for PermissionReplyResponse
impl RefUnwindSafe for PermissionReplyResponse
impl Send for PermissionReplyResponse
impl Sync for PermissionReplyResponse
impl Unpin for PermissionReplyResponse
impl UnwindSafe for PermissionReplyResponse
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