Struct rust_sc2::api::API [−][src]
pub struct API(_);
SC2 API. Can be accessed through self.api().
Implementations
impl API[src]
impl API[src]pub fn send(&self, req: Request) -> SC2Result<Response>[src]
Sends request and returns a response.
pub fn send_request(&self, req: Request) -> SC2Result<()>[src]
Sends request, waits for the response, but ignores it (useful when response is empty).
pub fn send_only(&self, req: Request) -> SC2Result<()>[src]
Sends request, but doesn’t wait for the response (use only when more control required,
in common cases prefered to use send or send_request).
pub fn wait_response(&self) -> SC2Result<Response>[src]
Waits for a response (useful only after send_only).
Auto Trait Implementations
impl !RefUnwindSafe for API
impl !RefUnwindSafe for APIimpl UnwindSafe for API
impl UnwindSafe for API