pub struct SubscribedWithInvalidFeedIdsIgnoredResponse {
pub subscription_id: SubscriptionId,
pub subscribed_feed_ids: Vec<PriceFeedId>,
pub ignored_invalid_feed_ids: InvalidFeedSubscriptionDetails,
}Fields§
§subscription_id: SubscriptionId§subscribed_feed_ids: Vec<PriceFeedId>§ignored_invalid_feed_ids: InvalidFeedSubscriptionDetailsTrait Implementations§
Source§impl Clone for SubscribedWithInvalidFeedIdsIgnoredResponse
impl Clone for SubscribedWithInvalidFeedIdsIgnoredResponse
Source§fn clone(&self) -> SubscribedWithInvalidFeedIdsIgnoredResponse
fn clone(&self) -> SubscribedWithInvalidFeedIdsIgnoredResponse
Returns a copy 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<'de> Deserialize<'de> for SubscribedWithInvalidFeedIdsIgnoredResponse
impl<'de> Deserialize<'de> for SubscribedWithInvalidFeedIdsIgnoredResponse
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 From<SubscribedWithInvalidFeedIdsIgnoredResponse> for Response
impl From<SubscribedWithInvalidFeedIdsIgnoredResponse> for Response
Source§fn from(value: SubscribedWithInvalidFeedIdsIgnoredResponse) -> Self
fn from(value: SubscribedWithInvalidFeedIdsIgnoredResponse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SubscribedWithInvalidFeedIdsIgnoredResponse
impl PartialEq for SubscribedWithInvalidFeedIdsIgnoredResponse
Source§fn eq(&self, other: &SubscribedWithInvalidFeedIdsIgnoredResponse) -> bool
fn eq(&self, other: &SubscribedWithInvalidFeedIdsIgnoredResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SubscribedWithInvalidFeedIdsIgnoredResponse
impl StructuralPartialEq for SubscribedWithInvalidFeedIdsIgnoredResponse
Auto Trait Implementations§
impl Freeze for SubscribedWithInvalidFeedIdsIgnoredResponse
impl RefUnwindSafe for SubscribedWithInvalidFeedIdsIgnoredResponse
impl Send for SubscribedWithInvalidFeedIdsIgnoredResponse
impl Sync for SubscribedWithInvalidFeedIdsIgnoredResponse
impl Unpin for SubscribedWithInvalidFeedIdsIgnoredResponse
impl UnwindSafe for SubscribedWithInvalidFeedIdsIgnoredResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more