PerRPCCredsCallOption is a CallOption that indicates the per-RPC credentials to use for the call. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release.
| 493 | // Notice: This type is EXPERIMENTAL and may be changed or removed in a |
| 494 | // later release. |
| 495 | type PerRPCCredsCallOption struct { |
| 496 | Creds credentials.PerRPCCredentials |
| 497 | } |
| 498 | |
| 499 | func (o PerRPCCredsCallOption) before(c *callInfo) error { |
| 500 | c.creds = o.Creds |
nothing calls this directly
no outgoing calls
no test coverage detected