Struct teloxide_core::payloads::DeleteWebhook
source · [−]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
sourceimpl DeleteWebhook
impl DeleteWebhook
Trait Implementations
sourceimpl Clone for DeleteWebhook
impl Clone for DeleteWebhook
sourcefn clone(&self) -> DeleteWebhookⓘNotable traits for DeleteWebhookimpl Payload for DeleteWebhook type Output = True;
fn clone(&self) -> DeleteWebhookⓘNotable traits for DeleteWebhookimpl Payload for DeleteWebhook type Output = True;
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DeleteWebhook
impl Debug for DeleteWebhook
sourceimpl Default for DeleteWebhook
impl Default for DeleteWebhook
sourcefn default() -> DeleteWebhookⓘNotable traits for DeleteWebhookimpl Payload for DeleteWebhook type Output = True;
fn default() -> DeleteWebhookⓘNotable traits for DeleteWebhookimpl Payload for DeleteWebhook type Output = True;
Returns the “default value” for a type. Read more
sourceimpl Hash for DeleteWebhook
impl Hash for DeleteWebhook
sourceimpl PartialEq<DeleteWebhook> for DeleteWebhook
impl PartialEq<DeleteWebhook> for DeleteWebhook
sourcefn eq(&self, other: &DeleteWebhook) -> bool
fn eq(&self, other: &DeleteWebhook) -> bool
sourceimpl Payload for DeleteWebhook
impl Payload for DeleteWebhook
sourcefn 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. Read moresourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.