pub struct IpoCalendarEvent {
pub event_type: &'static str,
pub market: i32,
pub code: String,
pub name: String,
pub date: Option<String>,
pub time: Option<String>,
pub timestamp: Option<f64>,
}Fields§
§event_type: &'static str§market: i32§code: String§name: String§date: Option<String>§time: Option<String>§timestamp: Option<f64>Trait Implementations§
Source§impl Clone for IpoCalendarEvent
impl Clone for IpoCalendarEvent
Source§fn clone(&self) -> IpoCalendarEvent
fn clone(&self) -> IpoCalendarEvent
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 IpoCalendarEvent
impl Debug for IpoCalendarEvent
Source§impl PartialEq for IpoCalendarEvent
impl PartialEq for IpoCalendarEvent
Source§impl Serialize for IpoCalendarEvent
impl Serialize for IpoCalendarEvent
impl StructuralPartialEq for IpoCalendarEvent
Auto Trait Implementations§
impl Freeze for IpoCalendarEvent
impl RefUnwindSafe for IpoCalendarEvent
impl Send for IpoCalendarEvent
impl Sync for IpoCalendarEvent
impl Unpin for IpoCalendarEvent
impl UnsafeUnpin for IpoCalendarEvent
impl UnwindSafe for IpoCalendarEvent
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