Skip to content

Commit 2177abb

Browse files
committed
Make the field private
1 parent a7c0056 commit 2177abb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/sec_websocket_extensions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ use {Error, Header, HeaderValue};
6161
/// [RFC6455_11.3.2]: https://tools.ietf.org/html/rfc6455#section-11.3.2
6262
/// [RFC7692_7]: https://tools.ietf.org/html/rfc7692#section-7
6363
#[derive(Clone, Debug, Eq, PartialEq)]
64-
pub struct SecWebsocketExtensions(pub Vec<WebsocketExtension>);
64+
pub struct SecWebsocketExtensions(Vec<WebsocketExtension>);
6565

6666
impl Header for SecWebsocketExtensions {
6767
fn name() -> &'static ::HeaderName {

0 commit comments

Comments
 (0)