[][src]Enum game_features::MoveToFrontMode

pub enum MoveToFrontMode {
    None,
    TakeLast,
    Offset,
}

The way items are removed from the inventory. Indicates if empty spots are left, and if not, how to fill them.

Variants

None

Don't move items to the front when there is available space.

TakeLast

Takes the last element and puts it where the removed one was.

Offset

Moves all elements after the removed one.

Methods

impl MoveToFrontMode[src]

pub fn new_none() -> Self[src]

Constructs a new MoveToFrontMode::None.

impl MoveToFrontMode[src]

pub fn new_take_last() -> Self[src]

Constructs a new MoveToFrontMode::TakeLast.

impl MoveToFrontMode[src]

pub fn new_offset() -> Self[src]

Constructs a new MoveToFrontMode::Offset.

Trait Implementations

impl Clone for MoveToFrontMode[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for MoveToFrontMode[src]

impl Serialize for MoveToFrontMode[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]

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