pub struct SubscriptionResponse {
pub depth: Option<i64>,
pub interval: Option<i64>,
pub max_rate_count: Option<i64>,
pub name: Option<SubscriptionName>,
pub token: Option<Token>,
}
Expand description
Generic response for any subscription
This optionally contains fields relevant to each type of subscription.
Fields§
§depth: Option<i64>
§interval: Option<i64>
§max_rate_count: Option<i64>
§name: Option<SubscriptionName>
§token: Option<Token>
Trait Implementations§
Source§impl Debug for SubscriptionResponse
impl Debug for SubscriptionResponse
Source§impl<'de> Deserialize<'de> for SubscriptionResponse
impl<'de> Deserialize<'de> for SubscriptionResponse
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 SubscriptionResponse
impl PartialEq for SubscriptionResponse
impl StructuralPartialEq for SubscriptionResponse
Auto Trait Implementations§
impl Freeze for SubscriptionResponse
impl RefUnwindSafe for SubscriptionResponse
impl Send for SubscriptionResponse
impl Sync for SubscriptionResponse
impl Unpin for SubscriptionResponse
impl UnwindSafe for SubscriptionResponse
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