Struct google_cloud_rust_raw::api::servicecontrol::v1::service_controller_grpc::ServiceControllerClient
source · [−]pub struct ServiceControllerClient { /* private fields */ }Implementations
sourceimpl ServiceControllerClient
impl ServiceControllerClient
pub fn new(channel: Channel) -> Self
pub fn check_opt(
&self,
req: &CheckRequest,
opt: CallOption
) -> Result<CheckResponse>
pub fn check(&self, req: &CheckRequest) -> Result<CheckResponse>
pub fn check_async_opt(
&self,
req: &CheckRequest,
opt: CallOption
) -> Result<ClientUnaryReceiver<CheckResponse>>
pub fn check_async(
&self,
req: &CheckRequest
) -> Result<ClientUnaryReceiver<CheckResponse>>
pub fn report_opt(
&self,
req: &ReportRequest,
opt: CallOption
) -> Result<ReportResponse>
pub fn report(&self, req: &ReportRequest) -> Result<ReportResponse>
pub fn report_async_opt(
&self,
req: &ReportRequest,
opt: CallOption
) -> Result<ClientUnaryReceiver<ReportResponse>>
pub fn report_async(
&self,
req: &ReportRequest
) -> Result<ClientUnaryReceiver<ReportResponse>>
pub fn spawn<F>(&self, f: F) where
F: Future<Output = ()> + Send + 'static,
Trait Implementations
sourceimpl Clone for ServiceControllerClient
impl Clone for ServiceControllerClient
sourcefn clone(&self) -> ServiceControllerClient
fn clone(&self) -> ServiceControllerClient
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl !RefUnwindSafe for ServiceControllerClient
impl Send for ServiceControllerClient
impl Sync for ServiceControllerClient
impl Unpin for ServiceControllerClient
impl !UnwindSafe for ServiceControllerClient
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more