[][src]Struct weasel::entropy::ResetEntropy

pub struct ResetEntropy<R: BattleRules> { /* fields omitted */ }

Event to reset the entropy model.

Examples

use weasel::{
    battle_rules, rules::empty::*, Battle, BattleController, BattleRules, EventKind,
    EventTrigger, ResetEntropy, Server,
};

battle_rules! {}

let battle = Battle::builder(CustomRules::new()).build();
let mut server = Server::builder(battle).build();

ResetEntropy::trigger(&mut server).fire().unwrap();
assert_eq!(
    server.battle().history().events()[0].kind(),
    EventKind::ResetEntropy
);

Implementations

impl<R: BattleRules> ResetEntropy<R>[src]

pub fn trigger<P: EventProcessor<R>>(
    processor: &mut P
) -> ResetEntropyTrigger<'_, R, P>
[src]

Returns a trigger for this event.

pub fn seed(&self) -> &Option<EntropySeed<R>>[src]

Returns the new seed.

Trait Implementations

impl<R: BattleRules> Clone for ResetEntropy<R>[src]

impl<R: BattleRules> Debug for ResetEntropy<R>[src]

impl<'de, R: BattleRules> Deserialize<'de> for ResetEntropy<R> where
    Option<EntropySeed<R>>: Deserialize<'de>, 
[src]

impl<R: BattleRules + 'static> Event<R> for ResetEntropy<R>[src]

impl<R: BattleRules> Serialize for ResetEntropy<R> where
    Option<EntropySeed<R>>: Serialize
[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for ResetEntropy<R> where
    <<R as BattleRules>::ER as EntropyRules>::EntropySeed: RefUnwindSafe

impl<R> Send for ResetEntropy<R> where
    <<R as BattleRules>::ER as EntropyRules>::EntropySeed: Send

impl<R> Sync for ResetEntropy<R> where
    <<R as BattleRules>::ER as EntropyRules>::EntropySeed: Sync

impl<R> Unpin for ResetEntropy<R> where
    <<R as BattleRules>::ER as EntropyRules>::EntropySeed: Unpin

impl<R> UnwindSafe for ResetEntropy<R> where
    <<R as BattleRules>::ER as EntropyRules>::EntropySeed: UnwindSafe

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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 = Infallible

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<V, T> VZip<V> for T where
    V: MultiLane<T>,