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 moreAuto 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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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