rvk_objects 0.2.0

Crate providing objects for use with VK (VKontakte) API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! <https://vk.com/dev/objects/appWidget?f=1.%20Text>

use super::*;

#[derive(Deserialize, Clone, Debug)]
pub struct Text {
    pub title: String,
    pub title_url: Option<String>,
    pub title_counter: Option<Integer>,
    pub text: Option<String>,
    pub descr: Option<String>,
    pub more: Option<String>,
    pub more_url: Option<String>,
}