Trait redfish_codegen::api::v1::controls::control_detail::ControlDetail
source · 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;
}