# File lib/hiredis/ruby/connection.rb, line 223
      def timeout=(usecs)
        raise ArgumentError.new("timeout cannot be negative") if usecs < 0

        if usecs == 0
          @timeout = nil
        else
          @timeout = usecs / 1_000_000.0
        end

        nil
      end