pub struct PriceFeedAttributes {Show 14 fields
pub asset_type: String,
pub base: Option<String>,
pub cms_symbol: Option<String>,
pub country: Option<String>,
pub cqs_symbol: Option<String>,
pub description: String,
pub display_symbol: String,
pub generic_symbol: Option<String>,
pub nasdaq_symbol: Option<String>,
pub publish_interval: Option<String>,
pub quote_currency: Option<String>,
pub schedule: Option<String>,
pub symbol: String,
pub min_channel: Channel,
}Fields§
§asset_type: String§base: Option<String>§cms_symbol: Option<String>§country: Option<String>§cqs_symbol: Option<String>§description: String§display_symbol: String§generic_symbol: Option<String>§nasdaq_symbol: Option<String>§publish_interval: Option<String>§quote_currency: Option<String>§schedule: Option<String>§symbol: String§min_channel: ChannelTrait Implementations§
Source§impl Clone for PriceFeedAttributes
impl Clone for PriceFeedAttributes
Source§fn clone(&self) -> PriceFeedAttributes
fn clone(&self) -> PriceFeedAttributes
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PriceFeedAttributes
impl Debug for PriceFeedAttributes
Source§impl<'de> Deserialize<'de> for PriceFeedAttributes
impl<'de> Deserialize<'de> for PriceFeedAttributes
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 PriceFeedAttributes
impl RefUnwindSafe for PriceFeedAttributes
impl Send for PriceFeedAttributes
impl Sync for PriceFeedAttributes
impl Unpin for PriceFeedAttributes
impl UnsafeUnpin for PriceFeedAttributes
impl UnwindSafe for PriceFeedAttributes
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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