# File lib/fog/voxel/parsers/compute/images_list.rb, line 13
          def start_element(name, attrs = [])
            super

            case name
            when 'err'
              @response['err'] = {
                'code'  => attr_value('code', attrs),
                'msg'   => attr_value('msg', attrs)
              }
            when 'size'
              @image['filesystem']['units'] = attr_value('units', attrs)
            when 'image'
              @image = {
                'id' => attr_value('id', attrs).to_i,
                'summary' => attr_value('summary', attrs)
              }
            when 'filesystem', 'operating_system'
              @image[name] = {}
            when 'rsp'
              @response['stat'] = attr_value('stat', attrs)
            end
          end