Macro uri_auth

Source
macro_rules! uri_auth {
    ($u:tt) => { ... };
    ($u:tt, $p:tt) => { ... };
}
Expand description

Generate a URI authentication from credentials.

let auth = uri_auth!("user");
let auth = uri_auth!("user", "pass");