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;
}

Required Methods§

source

fn get(chassis_id: String, drive_id: String) -> AssemblyGetResponse

source

fn put( chassis_id: String, drive_id: String, body: Assembly ) -> AssemblyPutResponse

source

fn patch( chassis_id: String, drive_id: String, body: Value ) -> AssemblyPatchResponse

Implementors§