pub trait IWaterBaseV2: IMonoBehaviour {
// Provided methods
fn shared_material(self) -> Material { ... }
fn set_shared_material(self, value: Material) { ... }
fn edge_blend(self) -> bool { ... }
fn set_edge_blend(self, value: bool) { ... }
fn reflection(self) -> bool { ... }
fn set_reflection(self, value: bool) { ... }
}Provided Methods§
fn edge_blend(self) -> bool
fn set_edge_blend(self, value: bool)
fn reflection(self) -> bool
fn set_reflection(self, value: bool)
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.