File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ use std::to_bytes;
21
21
use std:: uint;
22
22
23
23
#[ deriving( Clone , Eq ) ]
24
- struct Url {
24
+ pub struct Url {
25
25
scheme : ~str ,
26
26
user : Option < UserInfo > ,
27
27
host : ~str ,
@@ -32,7 +32,7 @@ struct Url {
32
32
}
33
33
34
34
#[ deriving( Clone , Eq ) ]
35
- struct UserInfo {
35
+ pub struct UserInfo {
36
36
user : ~str ,
37
37
pass : Option < ~str >
38
38
}
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ impl Decorator<~[u8]> for MemReader {
128
128
129
129
130
130
/// Writes to a fixed-size byte slice
131
- struct BufWriter < ' self > {
131
+ pub struct BufWriter < ' self > {
132
132
buf : & ' self mut [ u8 ] ,
133
133
pos : uint
134
134
}
@@ -156,7 +156,7 @@ impl<'self> Seek for BufWriter<'self> {
156
156
157
157
158
158
/// Reads from a fixed-size byte slice
159
- struct BufReader < ' self > {
159
+ pub struct BufReader < ' self > {
160
160
buf : & ' self [ u8 ] ,
161
161
pos : uint
162
162
}
You can’t perform that action at this time.
0 commit comments