usecrate::pixiv::helper_structs::image_url::ImageUrl;useserde::{Deserialize, Serialize};/// The user who worked on the illustration (the artist).
#[derive(Deserialize, Serialize, Debug)]pubstructUser{account: String,
id:u32,
is_followed:Option<bool>,
name: String,
profile_image_urls: ImageUrl,
}