megalodon 1.3.0

Fediverse API client library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)]
pub struct IdentityProof {
    pub provider: String,
    pub provider_username: String,
    pub updated_at: DateTime<Utc>,
    pub proof_url: String,
    pub profile_url: String,
}