Trait arcdps::evtc::extract::Extract

pub trait Extract: Sized {
    // Required method
    unsafe fn extract(event: &Event) -> Self;
}
Expand description

Forcefully extracts information from a combat event.

Required Methods§

unsafe fn extract(event: &Event) -> Self

Extracts Self from the combat event.

§Safety

This is safe when the given event is a valid event to extract Self from.

Object Safety§

This trait is not object safe.

Implementors§