pixapi 0.1.1

An API for accessing to pixiv.net
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::Deserialize;

use super::tag::TagDetail;

#[derive(Debug, Clone, Deserialize)]
pub struct BookmarkDetail {
    pub is_bookmarked: bool,
    pub tags: Vec<TagDetail>,
    pub restrict: String,
}