pub enum Input {
Authenticated,
Bound {
bound_client: BoundClient<'static>,
},
Extended {
extensions: Extensions,
},
Negotiated {
pre_grant: PreGrant,
},
None,
}Expand description
Input injected by the executor into the state machine.
Variants§
Authenticated
Positively answer an authentication query.
Bound
Binding of the client succeeded
Fields
§
bound_client: BoundClient<'static>The bound client
Extended
Provide extensions
Fields
§
extensions: ExtensionsThe grant extension
Negotiated
Negotiation done
None
Advance without input as far as possible, or just retrieve the output again.
Auto Trait Implementations§
impl Freeze for Input
impl RefUnwindSafe for Input
impl Send for Input
impl Sync for Input
impl Unpin for Input
impl UnwindSafe for Input
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more