[][src]Struct gcp_client::google::cloud::talent::v4beta1::job_service_client::JobServiceClient

pub struct JobServiceClient<T> { /* fields omitted */ }

A service handles job management, including job CRUD, enumeration and search.

Implementations

impl<T> JobServiceClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn create_job<'_>(
    &'_ mut self,
    request: impl IntoRequest<CreateJobRequest>
) -> Result<Response<Job>, Status>
[src]

Creates a new job.

Typically, the job becomes searchable within 10 seconds, but it may take up to 5 minutes.

pub async fn batch_create_jobs<'_>(
    &'_ mut self,
    request: impl IntoRequest<BatchCreateJobsRequest>
) -> Result<Response<Operation>, Status>
[src]

Begins executing a batch create jobs operation.

pub async fn get_job<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetJobRequest>
) -> Result<Response<Job>, Status>
[src]

Retrieves the specified job, whose status is OPEN or recently EXPIRED within the last 90 days.

pub async fn update_job<'_>(
    &'_ mut self,
    request: impl IntoRequest<UpdateJobRequest>
) -> Result<Response<Job>, Status>
[src]

Updates specified job.

Typically, updated contents become visible in search results within 10 seconds, but it may take up to 5 minutes.

pub async fn batch_update_jobs<'_>(
    &'_ mut self,
    request: impl IntoRequest<BatchUpdateJobsRequest>
) -> Result<Response<Operation>, Status>
[src]

Begins executing a batch update jobs operation.

pub async fn delete_job<'_>(
    &'_ mut self,
    request: impl IntoRequest<DeleteJobRequest>
) -> Result<Response<()>, Status>
[src]

Deletes the specified job.

Typically, the job becomes unsearchable within 10 seconds, but it may take up to 5 minutes.

pub async fn batch_delete_jobs<'_>(
    &'_ mut self,
    request: impl IntoRequest<BatchDeleteJobsRequest>
) -> Result<Response<()>, Status>
[src]

Deletes a list of [Job][google.cloud.talent.v4beta1.Job]s by filter.

pub async fn list_jobs<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListJobsRequest>
) -> Result<Response<ListJobsResponse>, Status>
[src]

Lists jobs by filter.

pub async fn search_jobs<'_>(
    &'_ mut self,
    request: impl IntoRequest<SearchJobsRequest>
) -> Result<Response<SearchJobsResponse>, Status>
[src]

Searches for jobs using the provided [SearchJobsRequest][google.cloud.talent.v4beta1.SearchJobsRequest].

This call constrains the [visibility][google.cloud.talent.v4beta1.Job.visibility] of jobs present in the database, and only returns jobs that the caller has permission to search against.

pub async fn search_jobs_for_alert<'_>(
    &'_ mut self,
    request: impl IntoRequest<SearchJobsRequest>
) -> Result<Response<SearchJobsResponse>, Status>
[src]

Searches for jobs using the provided [SearchJobsRequest][google.cloud.talent.v4beta1.SearchJobsRequest].

This API call is intended for the use case of targeting passive job seekers (for example, job seekers who have signed up to receive email alerts about potential job opportunities), and has different algorithmic adjustments that are targeted to passive job seekers.

This call constrains the [visibility][google.cloud.talent.v4beta1.Job.visibility] of jobs present in the database, and only returns jobs the caller has permission to search against.

Trait Implementations

impl<T: Clone> Clone for JobServiceClient<T>[src]

impl<T> Debug for JobServiceClient<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for JobServiceClient<T>

impl<T> Send for JobServiceClient<T> where
    T: Send

impl<T> Sync for JobServiceClient<T> where
    T: Sync

impl<T> Unpin for JobServiceClient<T> where
    T: Unpin

impl<T> !UnwindSafe for JobServiceClient<T>

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> Instrument for T[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>, 

impl<T> WithSubscriber for T[src]