[][src]Struct wfc::RunBorrow

pub struct RunBorrow<'a, W: Wrap> { /* fields omitted */ }

Represents a running instance of wfc which borrows its resources, making it possible to re-use memory across multiple runs.

Methods

impl<'a, W: Wrap> RunBorrow<'a, W>[src]

pub fn new<R: Rng>(
    context: &'a mut Context,
    wave: &'a mut Wave,
    global_stats: &'a GlobalStats,
    output_wrap: W,
    rng: &mut R
) -> Self
[src]

pub fn step<R: Rng>(&mut self, rng: &mut R) -> Result<Observe, PropagateError>[src]

pub fn forbid_all_patterns_except(
    &mut self,
    coord: Coord,
    pattern_id: PatternId
) -> Result<(), PropagateError>
[src]

pub fn forbid_pattern(
    &mut self,
    coord: Coord,
    pattern_id: PatternId
) -> Result<(), PropagateError>
[src]

pub fn collapse<R: Rng>(&mut self, rng: &mut R) -> Result<(), PropagateError>[src]

pub fn wave_cell_ref(&self, coord: Coord) -> WaveCellRef[src]

pub fn wave_cell_ref_iter(
    &self
) -> impl Iterator<Item = WaveCellRef>
[src]

pub fn wave_cell_ref_enumerate(
    &self
) -> impl Iterator<Item = (Coord, WaveCellRef)>
[src]

pub fn collapse_retrying<R, RB>(&mut self, retry: RB, rng: &mut R) -> RB::Return where
    R: Rng,
    RB: RetryBorrow
[src]

Auto Trait Implementations

impl<'a, W> Send for RunBorrow<'a, W> where
    W: Send

impl<'a, W> Sync for RunBorrow<'a, W> where
    W: Sync

Blanket Implementations

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

impl<T> From for 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, 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> Any for T where
    T: 'static + ?Sized
[src]

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