pub trait OverlayExternalServiceSyncHandler {
    fn handle_show_in_game_overlay(&self, arguments: OverlayState) -> Result<()>;
    fn handle_take_screen_shot(&self) -> Result<bool>;
    fn handle_video_capture(&self, arguments: VideoCaptureState) -> Result<()>;
}

Required Methods

Implementors