Browse Source

[doc]

github_actions
daladim 5 years ago
parent
commit
9d0221d9a9
  1. 1
      src/data/client.rs

1
src/data/client.rs

@ -46,6 +46,7 @@ pub struct Client {
} }
impl Client { impl Client {
/// Create a client. This does not start a connection
pub fn new<S: AsRef<str>, T: ToString, U: ToString>(url: S, username: T, password: U) -> Result<Self, Box<dyn Error>> { pub fn new<S: AsRef<str>, T: ToString, U: ToString>(url: S, username: T, password: U) -> Result<Self, Box<dyn Error>> {
let url = Url::parse(url.as_ref())?; let url = Url::parse(url.as_ref())?;

Loading…
Cancel
Save