pub struct BoardConfigJson {
pub minPlayers: u64,
pub maxPlayers: u64,
pub board: Vec<Vec<TileType>>,
}Fields§
§minPlayers: u64§maxPlayers: u64§board: Vec<Vec<TileType>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for BoardConfigJson
impl<'de> Deserialize<'de> for BoardConfigJson
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 BoardConfigJson
impl RefUnwindSafe for BoardConfigJson
impl Send for BoardConfigJson
impl Sync for BoardConfigJson
impl Unpin for BoardConfigJson
impl UnwindSafe for BoardConfigJson
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