pub type PasswordProjection<S, C> = ServerProjection<(Conn<S, ServerAuth, C>, Bytes), S, ServerPassword, C>;Expand description
Projection of a valid password body or the unchanged server-password state.
Aliased Type§
pub enum PasswordProjection<S, C> {
Ok((Conn<S, ServerAuth, C>, Bytes)),
Err(Box<(Conn<S, ServerPassword, C>, FrontendMessage)>),
}Variants§
Ok((Conn<S, ServerAuth, C>, Bytes))
Contains the success value
Err(Box<(Conn<S, ServerPassword, C>, FrontendMessage)>)
Contains the error value