Enum rust_rpg_toolkit::map::MapProperty [−][src]
pub enum MapProperty {
Bool {
value: bool,
},
Float {
value: f32,
},
Int {
value: i32,
},
String {
value: String,
},
Color {
value: Color,
},
}
Variants
Fields of Bool
value: bool
Fields of Float
value: f32
Fields of Int
value: i32
Fields of String
value: String
Fields of Color
value: Color
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 MapProperty
impl Send for MapProperty
impl Sync for MapProperty
impl Unpin for MapProperty
impl UnwindSafe for MapProperty
Blanket Implementations
Mutably borrows from an owned value. Read more