Struct teloxide::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
pub fn new() -> DeleteWebhookⓘNotable traits for DeleteWebhookimpl Payload for DeleteWebhook type Output = True;
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
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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<P> DeleteWebhookSetters for Pwhere
P: HasPayload<Payload = DeleteWebhook>,
impl<P> DeleteWebhookSetters for Pwhere
P: HasPayload<Payload = DeleteWebhook>,
sourcefn drop_pending_updates(self, value: bool) -> Self
fn drop_pending_updates(self, value: bool) -> Self
Setter for
drop_pending_updates field.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.impl<T> Erasable for T
impl<T> Erasable for T
sourceimpl<P> HasPayload for Pwhere
P: Payload,
impl<P> HasPayload for Pwhere
P: Payload,
type Payload = P
type Payload = P
The type of the payload contained.
sourcefn payload_mut(&mut self) -> &mut <P as HasPayload>::Payload
fn payload_mut(&mut self) -> &mut <P as HasPayload>::Payload
Gain mutable access to the underlying payload.
sourcefn payload_ref(&self) -> &<P as HasPayload>::Payload
fn payload_ref(&self) -> &<P as HasPayload>::Payload
Gain immutable access to the underlying payload.
sourcefn with_payload_mut<F>(self, f: F) -> Selfwhere
F: FnOnce(&mut Self::Payload),
fn with_payload_mut<F>(self, f: F) -> Selfwhere
F: FnOnce(&mut Self::Payload),
Update payload with a function