pub struct TileCoordination {
pub room: String,
pub tiles: Vec<FleetTile>,
pub consensus_tiles: Vec<String>,
pub pending_tiles: Vec<String>,
}Expand description
Tile coordination state for a room
Fields§
§room: String§tiles: Vec<FleetTile>§consensus_tiles: Vec<String>§pending_tiles: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for TileCoordination
impl Clone for TileCoordination
Source§fn clone(&self) -> TileCoordination
fn clone(&self) -> TileCoordination
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TileCoordination
impl Debug for TileCoordination
Source§impl<'de> Deserialize<'de> for TileCoordination
impl<'de> Deserialize<'de> for TileCoordination
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 TileCoordination
impl RefUnwindSafe for TileCoordination
impl Send for TileCoordination
impl Sync for TileCoordination
impl Unpin for TileCoordination
impl UnsafeUnpin for TileCoordination
impl UnwindSafe for TileCoordination
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