Module gix_protocol::fetch::delegate
source · Available on crate features
blocking-client or async-client only.Expand description
Enums§
- Defines what to do next after certain
Delegateoperations.
Traits§
- Delegate
blocking-clientThe protocol delegate is the bare minimal interface needed to fully control thefetchoperation. - The non-IO protocol delegate is the bare minimal interface needed to fully control the
fetchoperation, sparing the IO parts. Async implementations must treat it as blocking and unblock it by evaluating it elsewhere.