pub struct PermissionReplyRequest {
pub reply: PermissionReply,
pub message: Option<String>,
}Expand description
Request body for replying to a permission.
Fields§
§reply: PermissionReplyThe reply to send.
message: Option<String>Optional message to include with the reply.
Trait Implementations§
Source§impl Clone for PermissionReplyRequest
impl Clone for PermissionReplyRequest
Source§fn clone(&self) -> PermissionReplyRequest
fn clone(&self) -> PermissionReplyRequest
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 PermissionReplyRequest
impl Debug for PermissionReplyRequest
Source§impl<'de> Deserialize<'de> for PermissionReplyRequest
impl<'de> Deserialize<'de> for PermissionReplyRequest
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 PermissionReplyRequest
impl RefUnwindSafe for PermissionReplyRequest
impl Send for PermissionReplyRequest
impl Sync for PermissionReplyRequest
impl Unpin for PermissionReplyRequest
impl UnwindSafe for PermissionReplyRequest
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