[][src]Struct duckduckgeo::bot::BotSceneBuilder

pub struct BotSceneBuilder { /* fields omitted */ }

Builder to build a bot scene.

Methods

impl BotSceneBuilder[src]

pub fn new(num: usize) -> BotSceneBuilder[src]

pub fn with_grow(&mut self, grow: f32) -> &mut Self[src]

pub fn with_num(&mut self, num: usize) -> &mut Self[src]

pub fn with_radius_of(&mut self, radius: f32) -> &mut Self[src]

pub fn build_specialized<T>(
    &mut self,
    func: impl FnMut(Vec2<f32>) -> T
) -> BotScene<T>
[src]

pub fn build(&mut self) -> BotScene<Bot>[src]

Trait Implementations

impl Clone for BotSceneBuilder[src]

impl Copy for BotSceneBuilder[src]

impl Debug for BotSceneBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,