[][src]Struct gcp_client::google::cloud::talent::v4beta1::profile_service_client::ProfileServiceClient

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

A service that handles profile management, including profile CRUD, enumeration and search.

Implementations

impl<T> ProfileServiceClient<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 list_profiles<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListProfilesRequest>
) -> Result<Response<ListProfilesResponse>, Status>
[src]

Lists profiles by filter. The order is unspecified.

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

Creates and returns a new profile.

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

Gets the specified profile.

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

Updates the specified profile and returns the updated result.

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

Deletes the specified profile. Prerequisite: The profile has no associated applications or assignments associated.

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

Searches for profiles within a tenant.

For example, search by raw queries "software engineer in Mountain View" or search by structured filters (location filter, education filter, etc.).

See [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest] for more information.

Trait Implementations

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

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

Auto Trait Implementations

impl<T> !RefUnwindSafe for ProfileServiceClient<T>

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

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

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

impl<T> !UnwindSafe for ProfileServiceClient<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]