Struct abstio::abst_paths::MapName [−][src]
A single map is identified using this.
Fields
city: CityName
map: 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]
city: &CityName,
manifest: &Manifest
) -> Vec<MapName>
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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl Eq for MapName
[src]
impl Ord for MapName
[src]
fn cmp(&self, other: &MapName) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl PartialEq<MapName> for MapName
[src]
impl PartialOrd<MapName> for MapName
[src]
fn partial_cmp(&self, other: &MapName) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Serialize for MapName
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,