pub trait IMyRoomDifficultySequence: IProcInst {
// Provided methods
fn m_current_difficulty(self) -> Difficulty { ... }
fn set_m_current_difficulty(self, value: Difficulty) { ... }
fn m_next_difficulty(self) -> Difficulty { ... }
fn set_m_next_difficulty(self, value: Difficulty) { ... }
}Provided Methods§
fn m_current_difficulty(self) -> Difficulty
fn set_m_current_difficulty(self, value: Difficulty)
fn m_next_difficulty(self) -> Difficulty
fn set_m_next_difficulty(self, value: Difficulty)
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.