hitomi_la 0.1.4

A hitomi.la API wrapper for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct File {
    pub has_webp: bool,
    pub has_avif: bool,
    pub width: usize,
    pub height: usize,
    pub hash: String,
    pub name: String,
}