pub struct SubscriptionsResponse {
pub data: Vec<Subscription>,
pub total: u64,
pub limit: u64,
pub offset: u64,
}Expand description
API response containing a paginated list of subscriptions.
Fields§
§data: Vec<Subscription>List of subscriptions.
total: u64Total number of subscriptions.
limit: u64Number of items per page.
offset: u64Offset of the current page.
Trait Implementations§
Source§impl Debug for SubscriptionsResponse
impl Debug for SubscriptionsResponse
Source§impl<'de> Deserialize<'de> for SubscriptionsResponse
impl<'de> Deserialize<'de> for SubscriptionsResponse
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
Auto Trait Implementations§
impl Freeze for SubscriptionsResponse
impl RefUnwindSafe for SubscriptionsResponse
impl Send for SubscriptionsResponse
impl Sync for SubscriptionsResponse
impl Unpin for SubscriptionsResponse
impl UnwindSafe for SubscriptionsResponse
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