pub trait IMap_FillListMethods: IMap_FillList {
// Provided methods
fn fill_terrain(
self,
x: impl Into<i32>,
z: impl Into<i32>,
before: impl Into<i32>,
after: impl Into<i32>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn fill_terrain(
self,
x: impl Into<i32>,
z: impl Into<i32>,
before: impl Into<i32>,
after: impl Into<i32>,
)
fn fill_terrain( self, x: impl Into<i32>, z: impl Into<i32>, before: impl Into<i32>, after: impl Into<i32>, )
FillTerrain(i32, i32, i32, i32) 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§
impl<__T: IMap_FillList> IMap_FillListMethods for __T
Available on crate feature
app-map only.