pub trait Assembly {
// Required methods
fn get(chassis_id: String, drive_id: String) -> AssemblyGetResponse;
fn put(
chassis_id: String,
drive_id: String,
body: Assembly
) -> AssemblyPutResponse;
fn patch(
chassis_id: String,
drive_id: String,
body: Value
) -> AssemblyPatchResponse;
}