pub struct ChatActionBarJoinRequest {
pub title: String,
pub is_channel: bool,
pub request_date: i32,
}
Expand description
The chat is a private chat with an administrator of a chat to which the user sent join request
Fields§
§title: String
Title of the chat to which the join request was sent
is_channel: bool
True, if the join request was sent to a channel chat
request_date: i32
Point in time (Unix timestamp) when the join request was sent
Trait Implementations§
Source§impl Clone for ChatActionBarJoinRequest
impl Clone for ChatActionBarJoinRequest
Source§fn clone(&self) -> ChatActionBarJoinRequest
fn clone(&self) -> ChatActionBarJoinRequest
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 ChatActionBarJoinRequest
impl Debug for ChatActionBarJoinRequest
Source§impl Default for ChatActionBarJoinRequest
impl Default for ChatActionBarJoinRequest
Source§fn default() -> ChatActionBarJoinRequest
fn default() -> ChatActionBarJoinRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChatActionBarJoinRequest
impl<'de> Deserialize<'de> for ChatActionBarJoinRequest
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 ChatActionBarJoinRequest
impl PartialEq for ChatActionBarJoinRequest
Source§impl Serialize for ChatActionBarJoinRequest
impl Serialize for ChatActionBarJoinRequest
impl StructuralPartialEq for ChatActionBarJoinRequest
Auto Trait Implementations§
impl Freeze for ChatActionBarJoinRequest
impl RefUnwindSafe for ChatActionBarJoinRequest
impl Send for ChatActionBarJoinRequest
impl Sync for ChatActionBarJoinRequest
impl Unpin for ChatActionBarJoinRequest
impl UnwindSafe for ChatActionBarJoinRequest
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