1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
use std::future::IntoFuture;
use serde::{de::DeserializeOwned, Serialize};
use crate::{
bot::Bot,
requests::{HasPayload, MultipartPayload, Payload, Request, ResponseResult},
RequestError,
};
#[must_use = "Requests are lazy and do nothing unless sent"]
#[derive(Clone)]
pub struct MultipartRequest<P> {
bot: Bot,
payload: P,
}
impl<P> MultipartRequest<P> {
pub const fn new(bot: Bot, payload: P) -> Self {
Self { bot, payload }
}
}
impl<P> Request for MultipartRequest<P>
where
P: 'static,
P: Payload + MultipartPayload + Serialize,
P::Output: DeserializeOwned,
{
type Err = RequestError;
type Send = Send<P>;
type SendRef = SendRef<P>;
fn send(self) -> Self::Send {
Send::new(self)
}
fn send_ref(&self) -> Self::SendRef {
SendRef::new(self)
}
}
impl<P> IntoFuture for MultipartRequest<P>
where
P: 'static,
P: Payload + MultipartPayload + Serialize,
P::Output: DeserializeOwned,
{
type Output = Result<P::Output, RequestError>;
type IntoFuture = <Self as Request>::Send;
fn into_future(self) -> Self::IntoFuture {
self.send()
}
}
impl<P> HasPayload for MultipartRequest<P>
where
P: Payload,
{
type Payload = P;
fn payload_mut(&mut self) -> &mut Self::Payload {
&mut self.payload
}
fn payload_ref(&self) -> &Self::Payload {
&self.payload
}
}
impl<P> core::ops::Deref for MultipartRequest<P>
where
P: 'static,
P: Payload + MultipartPayload,
P::Output: DeserializeOwned,
{
type Target = P;
fn deref(&self) -> &Self::Target {
self.payload_ref()
}
}
impl<P> core::ops::DerefMut for MultipartRequest<P>
where
P: 'static,
P: Payload + MultipartPayload,
P::Output: DeserializeOwned,
{
fn deref_mut(&mut self) -> &mut Self::Target {
self.payload_mut()
}
}
req_future! {
def: |it: MultipartRequest<U>| {
it.bot.execute_multipart(&mut {it.payload})
}
pub Send<U> (inner0) -> ResponseResult<U::Output>
where
U: 'static,
U: Payload + MultipartPayload + Serialize,
U::Output: DeserializeOwned,
}
req_future! {
def: |it: &MultipartRequest<U>| {
it.bot.execute_multipart_ref(&it.payload)
}
pub SendRef<U> (inner1) -> ResponseResult<U::Output>
where
U: 'static,
U: Payload + MultipartPayload + Serialize,
U::Output: DeserializeOwned,
}