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