Trait chirpstack_api::as_pb::external::api::device_profile_service_server::DeviceProfileService[][src]

pub trait DeviceProfileService: Send + Sync + 'static {
    fn create<'life0, 'async_trait>(
        &'life0 self,
        request: Request<CreateDeviceProfileRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<CreateDeviceProfileResponse>, Status>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn get<'life0, 'async_trait>(
        &'life0 self,
        request: Request<GetDeviceProfileRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<GetDeviceProfileResponse>, Status>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn update<'life0, 'async_trait>(
        &'life0 self,
        request: Request<UpdateDeviceProfileRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<()>, Status>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn delete<'life0, 'async_trait>(
        &'life0 self,
        request: Request<DeleteDeviceProfileRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<()>, Status>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn list<'life0, 'async_trait>(
        &'life0 self,
        request: Request<ListDeviceProfileRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<ListDeviceProfileResponse>, 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 DeviceProfileServiceServer.

Required methods

Create creates the given device-profile.

Get returns the device-profile matching the given id.

Update updates the given device-profile.

Delete deletes the device-profile matching the given id.

List lists the available device-profiles.

Implementors