Enum gix_protocol::fetch::delegate::Action
source · pub enum Action {
Continue,
Cancel,
}
Available on crate features
blocking-client
or async-client
only.Expand description
Defines what to do next after certain Delegate
operations.
Variants§
Continue
Continue the typical flow of operations in this flow.
Cancel
Return at the next possible opportunity without making further requests, possibly after closing the connection.
Trait Implementations§
source§impl Ord for Action
impl Ord for Action
source§impl PartialEq<Action> for Action
impl PartialEq<Action> for Action
source§impl PartialOrd<Action> for Action
impl PartialOrd<Action> for Action
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more