Struct abstio::abst_paths::MapName[][src]

pub struct MapName {
    pub city: CityName,
    pub map: String,
}

A single map is identified using this.

Fields

city: CityNamemap: String

The name of the map within the city, in filename-friendly form – for example, “downtown”

Implementations

impl MapName[src]

pub fn new(country: &str, city: &str, map: &str) -> MapName[src]

Create a MapName from a country code, city, and map name.

pub fn from_city(city: &CityName, map: &str) -> MapName[src]

Create a MapName from a city and map within that city.

pub fn seattle(map: &str) -> MapName[src]

Convenient constructor for the main city of the game.

pub fn describe(&self) -> String[src]

Stringify the map name for debug messages. Don’t implement std::fmt::Display, to force callers to explicitly opt into this description, which could change.

pub fn as_filename(&self) -> String[src]

Stringify the map name for filenames.

pub fn from_path(path: &str) -> Option<MapName>[src]

Transforms a path to a map back to a MapName. Returns None if the input is strange.

pub fn path(&self) -> String[src]

Returns the filesystem path to this map.

pub fn list_all_maps_in_city_locally(city: &CityName) -> Vec<MapName>[src]

Returns all maps from one city that’re available locally.

pub fn list_all_maps_locally() -> Vec<MapName>[src]

Returns all maps from all cities available locally.

pub fn list_all_maps_from_manifest(manifest: &Manifest) -> Vec<MapName>[src]

Returns all maps from all cities based on the manifest of available files.

pub fn list_all_maps_in_city_from_manifest(
    city: &CityName,
    manifest: &Manifest
) -> Vec<MapName>
[src]

Returns all maps from one city based on the manifest of available files.

pub fn to_data_pack_name(&self) -> String[src]

Returns the string to opt into runtime or input files for DataPacks.

Trait Implementations

impl Clone for MapName[src]

impl Debug for MapName[src]

impl<'de> Deserialize<'de> for MapName[src]

impl Eq for MapName[src]

impl Ord for MapName[src]

impl PartialEq<MapName> for MapName[src]

impl PartialOrd<MapName> for MapName[src]

impl Serialize for MapName[src]

impl StructuralEq for MapName[src]

impl StructuralPartialEq for MapName[src]

Auto Trait Implementations

impl RefUnwindSafe for MapName

impl Send for MapName

impl Sync for MapName

impl Unpin for MapName

impl UnwindSafe for MapName

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.