Struct teloxide_core::payloads::DeleteWebhook
source · pub struct DeleteWebhook {
pub drop_pending_updates: Option<bool>,
}
Expand description
Use this method to remove webhook integration if you decide to switch back to GetUpdates
. Returns True on success. Requires no parameters.
Fields§
§drop_pending_updates: Option<bool>
Pass True to drop all pending updates
Implementations§
source§impl DeleteWebhook
impl DeleteWebhook
Trait Implementations§
source§impl Clone for DeleteWebhook
impl Clone for DeleteWebhook
source§impl Debug for DeleteWebhook
impl Debug for DeleteWebhook
source§impl Default for DeleteWebhook
impl Default for DeleteWebhook
source§impl Hash for DeleteWebhook
impl Hash for DeleteWebhook
source§impl PartialEq<DeleteWebhook> for DeleteWebhook
impl PartialEq<DeleteWebhook> for DeleteWebhook
source§fn eq(&self, other: &DeleteWebhook) -> bool
fn eq(&self, other: &DeleteWebhook) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Payload for DeleteWebhook
impl Payload for DeleteWebhook
source§fn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
If this payload may take long time to execute (e.g.
GetUpdates
with
big timeout
), the minimum timeout that should be used.source§impl Serialize for DeleteWebhook
impl Serialize for DeleteWebhook
impl Eq for DeleteWebhook
impl StructuralEq for DeleteWebhook
impl StructuralPartialEq for DeleteWebhook
Auto Trait Implementations§
impl RefUnwindSafe for DeleteWebhook
impl Send for DeleteWebhook
impl Sync for DeleteWebhook
impl Unpin for DeleteWebhook
impl UnwindSafe for DeleteWebhook
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.