[][src]Struct screeps::pathfinder::SearchOptions

pub struct SearchOptions<'a, F> where
    F: Fn(String) -> CostMatrix<'a>, 
{ /* fields omitted */ }

Methods

impl SearchOptions<'static, fn(_: String) -> CostMatrix<'static>>[src]

pub fn new() -> Self[src]

Creates default SearchOptions

impl<'a, F> SearchOptions<'a, F> where
    F: Fn(String) -> CostMatrix<'a>, 
[src]

pub fn room_callback<'b, F2>(self, room_callback: F2) -> SearchOptions<'b, F2> where
    F2: Fn(String) -> CostMatrix<'b>, 
[src]

Sets room callback - default |_| { CostMatrix::default() }.

pub fn plain_cost(self, cost: u8) -> Self[src]

Sets plain cost - default 1.

pub fn swamp_cost(self, cost: u8) -> Self[src]

Sets swamp cost - default 5.

pub fn flee(self, flee: bool) -> Self[src]

Sets whether this is a flee search - default false.

pub fn max_ops(self, ops: u32) -> Self[src]

Sets maximum ops - default 2000.

pub fn max_rooms(self, rooms: u32) -> Self[src]

Sets maximum rooms - default 16, max 16.

pub fn max_cost(self, cost: f64) -> Self[src]

Sets maximum path cost - default f64::Infinity.

pub fn heuristic_weight(self, weight: f64) -> Self[src]

Sets heuristic weight - default 1.2.

Trait Implementations

impl Default for SearchOptions<'static, fn(_: String) -> CostMatrix<'static>>[src]

Auto Trait Implementations

impl<'a, F> Send for SearchOptions<'a, F> where
    F: Send

impl<'a, F> Sync for SearchOptions<'a, F> where
    F: Sync

Blanket Implementations

impl<T, U> IntoExpectedType for T where
    U: FromExpectedType<T>, 
[src]

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.