pub trait IMapTerrainInfoAlignmentMethods: IMapTerrainInfoAlignment {
// Provided methods
fn start(self) { ... }
fn alignment(self) { ... }
fn alignment_first(self, rate: impl Into<f32>) -> Vector2 { ... }
fn alignment_second(self, rate: impl Into<f32>) -> Vector2 { ... }
fn alignment_third(self, rate: impl Into<f32>) -> Vector2 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn alignment_first(self, rate: impl Into<f32>) -> Vector2
fn alignment_first(self, rate: impl Into<f32>) -> Vector2
AlignmentFirst(f32) overload
Sourcefn alignment_second(self, rate: impl Into<f32>) -> Vector2
fn alignment_second(self, rate: impl Into<f32>) -> Vector2
AlignmentSecond(f32) overload
Sourcefn alignment_third(self, rate: impl Into<f32>) -> Vector2
fn alignment_third(self, rate: impl Into<f32>) -> Vector2
AlignmentThird(f32) 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: IMapTerrainInfoAlignment> IMapTerrainInfoAlignmentMethods for __T
Available on crate feature
app-mapterraininfoalignment only.