chilloutvr 0.6.0

Unofficial rust types of ChilloutVR's API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Deserialize, Serialize};

/// A featured item showcased on an user's profile
#[cfg(feature = "http")]
#[derive(Debug, Clone, PartialEq, Eq, Hash, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct FeaturedItem {
	/// The title to display of the item
	pub name: String,
	/// An URL of the item's image
	pub image: String,
}