pub trait PathfinderClientExt {
// Required methods
fn goto(&self, goal: impl Goal + Send + Sync + 'static);
fn goto_without_mining(&self, goal: impl Goal + Send + Sync + 'static);
fn stop_pathfinding(&self);
}
Required Methods§
fn goto(&self, goal: impl Goal + Send + Sync + 'static)
fn goto_without_mining(&self, goal: impl Goal + Send + Sync + 'static)
fn stop_pathfinding(&self)
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.