fix(handshake): make client struct data public
This commit is contained in:
parent
3d4a93441f
commit
b0571455d5
1 changed files with 3 additions and 3 deletions
|
|
@ -141,9 +141,9 @@ pub enum Output {
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Client {
|
pub struct Client {
|
||||||
state: State,
|
pub state: State,
|
||||||
output: Output,
|
pub output: Output,
|
||||||
version_table: VersionTable,
|
pub version_table: VersionTable,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Client {
|
impl Client {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue