pub struct GridMap {
pub header: Header,
pub top_left: Point,
pub top_right: Point,
pub bottom_right: Point,
pub bottom_left: Point,
pub map_names: Vec<String>,
pub map_data: Vec<Image>,
}Fields§
§header: Header§top_left: Point§top_right: Point§bottom_right: Point§bottom_left: Point§map_names: Vec<String>§map_data: Vec<Image>Trait Implementations§
Source§impl<'de> Deserialize<'de> for GridMap
impl<'de> Deserialize<'de> for GridMap
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
impl Message for GridMap
impl StructuralPartialEq for GridMap
Auto Trait Implementations§
impl Freeze for GridMap
impl RefUnwindSafe for GridMap
impl Send for GridMap
impl Sync for GridMap
impl Unpin for GridMap
impl UnwindSafe for GridMap
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