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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,