pub struct NativeSink {
pub events: Vec<OverlordEvent>,
pub casts: Vec<StartCastAbilityScriptResult>,
/* private fields */
}Expand description
Sink that collects fight results as typed values for native callers. Mirrors
start_behaviors fill casts.
Fields§
§events: Vec<OverlordEvent>§casts: Vec<StartCastAbilityScriptResult>Trait Implementations§
Source§impl Default for NativeSink
impl Default for NativeSink
Source§fn default() -> NativeSink
fn default() -> NativeSink
Returns the “default value” for a type. Read more
Source§impl FightSink for NativeSink
impl FightSink for NativeSink
fn push_event(&mut self, event: OverlordEvent) -> Result<(), Error>
fn push_attack( &mut self, delay: u64, duration: u64, target: Uuid, origin: CombatEventOrigin, ) -> Result<(), Error>
fn push_run( &mut self, coords: Coordinates, duration: u64, origin: CombatEventOrigin, ) -> Result<(), Error>
Auto Trait Implementations§
impl Freeze for NativeSink
impl RefUnwindSafe for NativeSink
impl Send for NativeSink
impl Sync for NativeSink
impl Unpin for NativeSink
impl UnwindSafe for NativeSink
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more