Browse Source

Make ClientOptions public.

wip
Titouan Rigoudy 4 years ago
parent
commit
582e155ebc
1 changed files with 4 additions and 5 deletions
  1. +4
    -5
      src/proto/server/client.rs

+ 4
- 5
src/proto/server/client.rs View File

@ -31,11 +31,10 @@ impl Default for Version {
}
/// Specifies options for a new `Client`.
#[derive(Default)]
struct ClientOptions {
user_name: String,
password: String,
version: Version,
pub struct ClientOptions {
pub user_name: String,
pub password: String,
pub version: Version,
}
/// A client for the client-server protocol.


Loading…
Cancel
Save