Enum rust_rpg_toolkit::missions::MissionObjective [−][src]
pub enum MissionObjective {
Kill {
actor_id: String,
},
FindItem {
item_id: String,
},
DeliverItem {
item_id: String,
},
GoToWaypoint {
waypoint_id: String,
},
}
Variants
Fields of Kill
actor_id: String
Fields of FindItem
item_id: String
Fields of DeliverItem
item_id: String
Fields of GoToWaypoint
waypoint_id: String
Implementations
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 MissionObjective
impl Send for MissionObjective
impl Sync for MissionObjective
impl Unpin for MissionObjective
impl UnwindSafe for MissionObjective
Blanket Implementations
Mutably borrows from an owned value. Read more