pub struct DetailStep {
pub villagers: Option<String>,
pub builders: Option<String>,
pub food: Option<String>,
pub wood: Option<String>,
pub stone: Option<String>,
pub gold: Option<String>,
pub time: Option<String>,
pub description: Option<String>,
}Expand description
Container for the actual build steps
Fields§
§villagers: Option<String>Number of villagers
builders: Option<String>Number of builders
food: Option<String>Number of villagers assigned to food
wood: Option<String>Number of villagers assigned to wood
stone: Option<String>Number of villagers assigned to stone
gold: Option<String>Number of villagers assigned to gold
time: Option<String>Textual timestamp
description: Option<String>Textual description of the build step including images
Trait Implementations§
Source§impl Debug for DetailStep
impl Debug for DetailStep
Source§impl<'de> Deserialize<'de> for DetailStep
impl<'de> Deserialize<'de> for DetailStep
Source§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 Freeze for DetailStep
impl RefUnwindSafe for DetailStep
impl Send for DetailStep
impl Sync for DetailStep
impl Unpin for DetailStep
impl UnwindSafe for DetailStep
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more