pub struct GitPoapEvent {
pub git_poap_event_id: i32,
pub poap_event_id: i32,
pub poap_event_fancy_id: String,
pub name: String,
pub year: i32,
pub description: String,
pub image_url: String,
pub repositories: Vec<String>,
pub minted_count: i32,
}
Fields§
§git_poap_event_id: i32
§poap_event_id: i32
§poap_event_fancy_id: String
§name: String
§year: i32
§description: String
§image_url: String
§repositories: Vec<String>
§minted_count: i32
Trait Implementations§
Source§impl Debug for GitPoapEvent
impl Debug for GitPoapEvent
Source§impl<'de> Deserialize<'de> for GitPoapEvent
impl<'de> Deserialize<'de> for GitPoapEvent
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 GitPoapEvent
impl RefUnwindSafe for GitPoapEvent
impl Send for GitPoapEvent
impl Sync for GitPoapEvent
impl Unpin for GitPoapEvent
impl UnwindSafe for GitPoapEvent
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