Skip to main content

IMapDispos_PosListMethods

Trait IMapDispos_PosListMethods 

Source
pub trait IMapDispos_PosListMethods: IMapDispos_PosList {
    // Provided methods
    fn ctor(self) { ... }
    fn register(
        self,
        data_list: impl Into<List_1<DisposData>>,
        limit: impl Into<i32>,
    ) { ... }
    fn pop_front(self) -> MapDispos_Pos { ... }
    fn try_remove(self, data: impl Into<DisposData>) -> bool { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn register( self, data_list: impl Into<List_1<DisposData>>, limit: impl Into<i32>, )

Register(crate::system::collections::generic::list_1::List_1<crate::app::disposdata::DisposData>, i32) overload

Source

fn pop_front(self) -> MapDispos_Pos

PopFront() overload

Source

fn try_remove(self, data: impl Into<DisposData>) -> bool

TryRemove(crate::app::disposdata::DisposData) overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: IMapDispos_PosList> IMapDispos_PosListMethods for __T

Available on crate feature app-mapdispos only.