pub struct MessageDataWriteAccess {
pub from_attachment_menu: Option<bool>,
pub from_request: Option<bool>,
pub web_app_name: Option<String>,
}Expand description
Represents a service message about a user allowing a bot to write messages
after adding it to the attachment menu,
launching a Web App from a link,
or accepting an explicit request from a Web App
sent by the method requestWriteAccess.
Fields§
Indicates whether access was granted when the bot was added to the attachment or side menu.
from_request: Option<bool>Indicates whether access was granted after the user accepted an explicit request
from a Web App sent by the method requestWriteAccess.
web_app_name: Option<String>Name of the Web App, if the access was granted when the Web App was launched from a link.
Implementations§
Source§impl MessageDataWriteAccess
impl MessageDataWriteAccess
Sets a new value of the from_attachment_menu flag.
value- Indicates whether access was granted when the bot was added to the attachment or side menu.
Sourcepub fn with_from_request(self, value: bool) -> Self
pub fn with_from_request(self, value: bool) -> Self
Sets a new value of the from_request flag.
value- Indicates whether access was granted after the user accepted an explicit request from a Web App sent by the methodrequestWriteAccess.
Sourcepub fn with_web_app_name<T>(self, value: T) -> Self
pub fn with_web_app_name<T>(self, value: T) -> Self
Trait Implementations§
Source§impl Clone for MessageDataWriteAccess
impl Clone for MessageDataWriteAccess
Source§fn clone(&self) -> MessageDataWriteAccess
fn clone(&self) -> MessageDataWriteAccess
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 MessageDataWriteAccess
impl Debug for MessageDataWriteAccess
Source§impl Default for MessageDataWriteAccess
impl Default for MessageDataWriteAccess
Source§fn default() -> MessageDataWriteAccess
fn default() -> MessageDataWriteAccess
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MessageDataWriteAccess
impl<'de> Deserialize<'de> for MessageDataWriteAccess
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 MessageDataWriteAccess
impl PartialEq for MessageDataWriteAccess
Source§impl PartialOrd for MessageDataWriteAccess
impl PartialOrd for MessageDataWriteAccess
Source§impl Serialize for MessageDataWriteAccess
impl Serialize for MessageDataWriteAccess
impl StructuralPartialEq for MessageDataWriteAccess
Auto Trait Implementations§
impl Freeze for MessageDataWriteAccess
impl RefUnwindSafe for MessageDataWriteAccess
impl Send for MessageDataWriteAccess
impl Sync for MessageDataWriteAccess
impl Unpin for MessageDataWriteAccess
impl UnwindSafe for MessageDataWriteAccess
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