#[non_exhaustive]pub struct EventSubSubscription {
pub cost: usize,
pub condition: Value,
pub created_at: Timestamp,
pub id: EventSubId,
pub status: Status,
pub transport: TransportResponse,
pub type_: EventType,
pub version: String,
}
Available on crate feature
eventsub
only.Expand description
General information about an EventSub subscription.
Returned by Event::subscription
See also EventSubscriptionInformation
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.cost: usize
How much the subscription counts against your limit.
condition: Value
JSON object specifying custom parameters for the subscription.
created_at: Timestamp
RFC3339 timestamp indicating when the subscription was created.
id: EventSubId
ID of the subscription.
status: Status
Status of the subscription.
transport: TransportResponse
Notification delivery specific information. Includes the transport method and callback URL.
type_: EventType
The category of the subscription.
version: String
The version of the subscription.
Trait Implementations§
Source§impl Clone for EventSubSubscription
impl Clone for EventSubSubscription
Source§fn clone(&self) -> EventSubSubscription
fn clone(&self) -> EventSubSubscription
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EventSubSubscription
impl Debug for EventSubSubscription
Source§impl<'de> Deserialize<'de> for EventSubSubscription
impl<'de> Deserialize<'de> for EventSubSubscription
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EventSubSubscription
impl PartialEq for EventSubSubscription
Source§impl Serialize for EventSubSubscription
impl Serialize for EventSubSubscription
impl Eq for EventSubSubscription
impl StructuralPartialEq for EventSubSubscription
Auto Trait Implementations§
impl Freeze for EventSubSubscription
impl RefUnwindSafe for EventSubSubscription
impl Send for EventSubSubscription
impl Sync for EventSubSubscription
impl Unpin for EventSubSubscription
impl UnwindSafe for EventSubSubscription
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more