mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 06:25:10 +01:00
Merge pull request #1105 from pfa230/throttle_clone
Fix issue with Throttle and Trace adaptors losing Requester trait bounds
This commit is contained in:
commit
f081e04ee9
2 changed files with 2 additions and 0 deletions
|
@ -19,6 +19,7 @@ use crate::{
|
|||
|
||||
/// Request returned by [`Throttling`](crate::adaptors::Throttle) methods.
|
||||
#[must_use = "Requests are lazy and do nothing unless sent"]
|
||||
#[derive(Clone)]
|
||||
pub struct ThrottlingRequest<R: HasPayload> {
|
||||
pub(super) request: Arc<R>,
|
||||
pub(super) chat_id: fn(&R::Payload) -> ChatIdHash,
|
||||
|
|
|
@ -243,6 +243,7 @@ where
|
|||
}
|
||||
|
||||
#[must_use = "Requests are lazy and do nothing unless sent"]
|
||||
#[derive(Clone)]
|
||||
pub struct TraceRequest<R> {
|
||||
inner: R,
|
||||
settings: Settings,
|
||||
|
|
Loading…
Reference in a new issue