Trait chirpstack_api::as_pb::external::api::service_profile_service_server::ServiceProfileService[][src]

pub trait ServiceProfileService: Send + Sync + 'static {
    #[must_use]
    fn create<'life0, 'async_trait>(
        &'life0 self,
        request: Request<CreateServiceProfileRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<CreateServiceProfileResponse>, Status>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn get<'life0, 'async_trait>(
        &'life0 self,
        request: Request<GetServiceProfileRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<GetServiceProfileResponse>, Status>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn update<'life0, 'async_trait>(
        &'life0 self,
        request: Request<UpdateServiceProfileRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<()>, Status>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn delete<'life0, 'async_trait>(
        &'life0 self,
        request: Request<DeleteServiceProfileRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<()>, Status>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn list<'life0, 'async_trait>(
        &'life0 self,
        request: Request<ListServiceProfileRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<ListServiceProfileResponse>, Status>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }
Expand description

Generated trait containing gRPC methods that should be implemented for use with ServiceProfileServiceServer.

Required methods

#[must_use]
fn create<'life0, 'async_trait>(
    &'life0 self,
    request: Request<CreateServiceProfileRequest>
) -> Pin<Box<dyn Future<Output = Result<Response<CreateServiceProfileResponse>, Status>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Create creates the given service-profile.

#[must_use]
fn get<'life0, 'async_trait>(
    &'life0 self,
    request: Request<GetServiceProfileRequest>
) -> Pin<Box<dyn Future<Output = Result<Response<GetServiceProfileResponse>, Status>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Get returns the service-profile matching the given id.

#[must_use]
fn update<'life0, 'async_trait>(
    &'life0 self,
    request: Request<UpdateServiceProfileRequest>
) -> Pin<Box<dyn Future<Output = Result<Response<()>, Status>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Update updates the given serviceprofile.

#[must_use]
fn delete<'life0, 'async_trait>(
    &'life0 self,
    request: Request<DeleteServiceProfileRequest>
) -> Pin<Box<dyn Future<Output = Result<Response<()>, Status>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Delete deletes the service-profile matching the given id.

#[must_use]
fn list<'life0, 'async_trait>(
    &'life0 self,
    request: Request<ListServiceProfileRequest>
) -> Pin<Box<dyn Future<Output = Result<Response<ListServiceProfileResponse>, Status>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

List lists the available service-profiles.

Implementors