Struct minecraft_data_rs::api::enchantments::Enchantments[][src]

pub struct Enchantments { /* fields omitted */ }

Implementations

impl Enchantments[src]

pub fn new(version: Arc<Version>) -> Self[src]

pub fn enchantments_array(&self) -> DataResult<Vec<Enchantment>>[src]

Returns a list of enchantments

pub fn enchantments(&self) -> DataResult<HashMap<u32, Enchantment>>[src]

Returns a map of enchantments indexed by ID

pub fn enchantments_by_name(&self) -> DataResult<HashMap<String, Enchantment>>[src]

Returns a map of enchantments indexed by Name

pub fn enchantments_by_category(
    &self
) -> DataResult<HashMap<String, Vec<Enchantment>>>
[src]

Returns enchantments grouped by category

Trait Implementations

impl Clone for Enchantments[src]

impl Debug for Enchantments[src]

Auto Trait Implementations

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> From<T> 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.