vkapi2 0.4.3

vk api wrapper for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub struct ReorderAlbumsPhotosOptions {
    pub before: usize,
    pub after: usize,
}

impl Default for ReorderAlbumsPhotosOptions {
    fn default() -> Self {
        Self {
            before: 0,
            after: 0,
        }
    }
}