pub struct GetSubscriptionsSearchResponse {
pub data: Vec<Subscription>,
pub has_more: bool,
pub next_page: Option<String>,
pub object: String,
pub total_count: Option<i64>,
pub url: String,
}Expand description
Fields§
§data: Vec<Subscription>§has_more: bool§next_page: Option<String>§object: StringString representing the object’s type. Objects of the same type share the same value.
total_count: Option<i64>The total number of objects that match the query, only accurate up to 10,000.
url: StringTrait Implementations§
Source§impl Clone for GetSubscriptionsSearchResponse
impl Clone for GetSubscriptionsSearchResponse
Source§fn clone(&self) -> GetSubscriptionsSearchResponse
fn clone(&self) -> GetSubscriptionsSearchResponse
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 Default for GetSubscriptionsSearchResponse
impl Default for GetSubscriptionsSearchResponse
Source§fn default() -> GetSubscriptionsSearchResponse
fn default() -> GetSubscriptionsSearchResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetSubscriptionsSearchResponse
impl<'de> Deserialize<'de> for GetSubscriptionsSearchResponse
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 GetSubscriptionsSearchResponse
impl RefUnwindSafe for GetSubscriptionsSearchResponse
impl Send for GetSubscriptionsSearchResponse
impl Sync for GetSubscriptionsSearchResponse
impl Unpin for GetSubscriptionsSearchResponse
impl UnwindSafe for GetSubscriptionsSearchResponse
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