[][src]Struct mc_sim::drop::DropConfig

pub struct DropConfig {
    pub item: Item,
    pub weight: u32,
    pub min_count: u32,
    pub max_count: u32,
}

The configuration for a drop, but not the drop itself.

Fields

item: Itemweight: u32min_count: u32max_count: u32

Implementations

impl DropConfig[src]

pub fn new(item: Item, weight: u32, min_count: u32, max_count: u32) -> Self[src]

Creates a drop config.

// Create a drop config for an ender pearl.
let drop_config = DropConfig::new(Item::EnderPearl, 20, 4, 8);

Trait Implementations

impl Clone for DropConfig[src]

impl Debug for DropConfig[src]

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

impl Serialize for DropConfig[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,