[][src]Struct mc_sim::drop_list::DropList

pub struct DropList<D> where
    D: Clone
{ /* fields omitted */ }

Holds a list of drops and a model of the distribution of those drops. See: barter_drop_list and blaze_drop_list

Implementations

impl<D> DropList<D> where
    D: Clone
[src]

pub fn list(&self) -> &[DropConfig][src]

The list of drop configs, used by drop sims to pick what item to drop.

pub fn list_clone(&self) -> Vec<DropConfig>[src]

A clone of the list of drop configs, used by drop sims to pick what item to drop.

pub fn distribution(&self) -> &Option<D>[src]

The distribution for the drops in this drop list.

Trait Implementations

impl<D: Clone> Clone for DropList<D> where
    D: Clone
[src]

impl<D: Debug> Debug for DropList<D> where
    D: Clone
[src]

Auto Trait Implementations

impl<D> RefUnwindSafe for DropList<D> where
    D: RefUnwindSafe
[src]

impl<D> Send for DropList<D> where
    D: Send
[src]

impl<D> Sync for DropList<D> where
    D: Sync
[src]

impl<D> Unpin for DropList<D> where
    D: Unpin
[src]

impl<D> UnwindSafe for DropList<D> where
    D: UnwindSafe
[src]

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> 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>,