pub struct MarketStatusUpcoming {
pub exchange: String,
pub name: String,
pub date: String,
pub status: String,
pub open: Option<String>,
pub close: Option<String>,
}
Fields§
§exchange: String
§name: String
§date: String
§status: String
§open: Option<String>
§close: Option<String>
Trait Implementations§
Source§impl Clone for MarketStatusUpcoming
impl Clone for MarketStatusUpcoming
Source§fn clone(&self) -> MarketStatusUpcoming
fn clone(&self) -> MarketStatusUpcoming
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 Debug for MarketStatusUpcoming
impl Debug for MarketStatusUpcoming
Source§impl<'de> Deserialize<'de> for MarketStatusUpcoming
impl<'de> Deserialize<'de> for MarketStatusUpcoming
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 MarketStatusUpcoming
impl RefUnwindSafe for MarketStatusUpcoming
impl Send for MarketStatusUpcoming
impl Sync for MarketStatusUpcoming
impl Unpin for MarketStatusUpcoming
impl UnwindSafe for MarketStatusUpcoming
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