Enum rust_rpg_toolkit::json::TiledProperty [−][src]
pub enum TiledProperty {
Bool {
name: String,
value: bool,
},
Float {
name: String,
value: f32,
},
Int {
name: String,
value: i32,
},
String {
name: String,
value: String,
},
Color {
name: String,
value: String,
},
Object {
name: String,
value: i32,
},
File {
name: String,
value: String,
},
}
Variants
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for TiledProperty
impl Send for TiledProperty
impl Sync for TiledProperty
impl Unpin for TiledProperty
impl UnwindSafe for TiledProperty
Blanket Implementations
Mutably borrows from an owned value. Read more