pub trait NormalizedAction:
    Debug
    + Send
    + Sync
    + Clone
    + PartialEq
    + Eq {
    // Required methods
    fn is_classified(&self) -> bool;
    fn emitted_logs(&self) -> bool;
    fn get_action(&self) -> &Action;
    fn multi_frame_classification(&self) -> Option<MultiFrameRequest>;
    fn get_trace_index(&self) -> u64;
    fn is_create(&self) -> bool;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§