This website works better with JavaScript.
Home
Explore
Help
Sign In
titouan
/
solstice
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Make ClientOptions public.
wip
Titouan Rigoudy
4 years ago
parent
27b65eec60
commit
582e155ebc
1 changed files
with
4 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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.
Write
Preview
Loading…
Cancel
Save