pub struct CoinEvent {
pub id: String,
pub date: String,
pub date_to: Option<String>,
pub name: String,
pub description: String,
pub is_conference: bool,
pub link: Option<String>,
pub proof_image_link: Option<String>,
}Expand description
Event regarding given coin
Fields§
§id: String§date: String§date_to: Option<String>§name: String§description: String§is_conference: bool§link: Option<String>§proof_image_link: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for CoinEvent
impl<'de> Deserialize<'de> for CoinEvent
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 CoinEvent
impl RefUnwindSafe for CoinEvent
impl Send for CoinEvent
impl Sync for CoinEvent
impl Unpin for CoinEvent
impl UnwindSafe for CoinEvent
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