pub trait Processors {
    // Required method
    fn get(
        &self,
        resource_block_id: String,
        computer_system_id: String
    ) -> ProcessorsGetResponse;
}

Required Methods§

source

fn get( &self, resource_block_id: String, computer_system_id: String ) -> ProcessorsGetResponse

Implementors§