pub struct GetUserPersonalChatMessages { /* private fields */ }Expand description
Builder for the getUserPersonalChatMessages method (Bot API 9.7).
Returns the last messages from the personal chat of a given user. Limit must be 1–20.
Trait Implementations§
Source§impl IntoFuture for GetUserPersonalChatMessages
impl IntoFuture for GetUserPersonalChatMessages
Source§type Output = Result<Vec<Message>, Error>
type Output = Result<Vec<Message>, Error>
The output that the future will produce on completion.
Source§type IntoFuture = Pin<Box<dyn Future<Output = <GetUserPersonalChatMessages as IntoFuture>::Output> + Send>>
type IntoFuture = Pin<Box<dyn Future<Output = <GetUserPersonalChatMessages as IntoFuture>::Output> + Send>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for GetUserPersonalChatMessages
impl !UnwindSafe for GetUserPersonalChatMessages
impl Freeze for GetUserPersonalChatMessages
impl Send for GetUserPersonalChatMessages
impl Sync for GetUserPersonalChatMessages
impl Unpin for GetUserPersonalChatMessages
impl UnsafeUnpin for GetUserPersonalChatMessages
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