Timeout returns the timeout duration set in the Request.
()
| 590 | |
| 591 | // Timeout returns the timeout duration set in the Request. |
| 592 | func (r *Request) Timeout() time.Duration { |
| 593 | return r.timeout |
| 594 | } |
| 595 | |
| 596 | // SetTimeout sets the timeout for the Request, overriding any previously set value. |
| 597 | func (r *Request) SetTimeout(t time.Duration) *Request { |
no outgoing calls