pixieve-rs 0.4.0

Unofficial fork of an unofficial rust library for the Pixiv API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::pixiv::helper_structs::image_url::ImageUrl;

use serde::{Deserialize, Serialize};

/// The user who worked on the illustration (the artist).
#[derive(Deserialize, Serialize, Debug)]
pub struct User {
    account: String,
    id: u32,
    is_followed: Option<bool>,
    name: String,
    profile_image_urls: ImageUrl,
}