pub trait ControlDetail {
    // Required methods
    fn get(
        &self,
        chassis_id: String,
        control_id: String
    ) -> ControlDetailGetResponse;
    fn put(
        &mut self,
        chassis_id: String,
        control_id: String,
        body: Control
    ) -> ControlDetailPutResponse;
    fn patch(
        &mut self,
        chassis_id: String,
        control_id: String,
        body: Value
    ) -> ControlDetailPatchResponse;
}

Required Methods§

source

fn get( &self, chassis_id: String, control_id: String ) -> ControlDetailGetResponse

source

fn put( &mut self, chassis_id: String, control_id: String, body: Control ) -> ControlDetailPutResponse

source

fn patch( &mut self, chassis_id: String, control_id: String, body: Value ) -> ControlDetailPatchResponse

Implementors§