Struct rust_sc2::api::API[][src]

pub struct API(_);

SC2 API. Can be accessed through self.api().

Implementations

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 Send for API

impl !Sync for API

impl Unpin for API

impl UnwindSafe for API

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,