auto merge of #9559 : sfackler/rust/more-visibility, r=alexcrichton

This commit is contained in:
bors 2013-09-27 20:31:05 -07:00
commit 4a2f8ba8c9
2 changed files with 11 additions and 11 deletions

View File

@ -22,7 +22,7 @@ use vec;
/// Writes to an owned, growable byte vector
pub struct MemWriter {
buf: ~[u8]
priv buf: ~[u8]
}
impl MemWriter {
@ -66,8 +66,8 @@ impl Decorator<~[u8]> for MemWriter {
/// Reads from an owned byte vector
pub struct MemReader {
buf: ~[u8],
pos: uint
priv buf: ~[u8],
priv pos: uint
}
impl MemReader {
@ -129,8 +129,8 @@ impl Decorator<~[u8]> for MemReader {
/// Writes to a fixed-size byte slice
pub struct BufWriter<'self> {
buf: &'self mut [u8],
pos: uint
priv buf: &'self mut [u8],
priv pos: uint
}
impl<'self> BufWriter<'self> {
@ -157,8 +157,8 @@ impl<'self> Seek for BufWriter<'self> {
/// Reads from a fixed-size byte slice
pub struct BufReader<'self> {
buf: &'self [u8],
pos: uint
priv buf: &'self [u8],
priv pos: uint
}
impl<'self> BufReader<'self> {
@ -199,9 +199,9 @@ impl<'self> Seek for BufReader<'self> {
///Calls a function with a MemWriter and returns
///the writer's stored vector.
pub fn with_mem_writer(writeFn:&fn(&mut MemWriter)) -> ~[u8] {
let mut writer = MemWriter::new();
writeFn(&mut writer);
writer.inner()
let mut writer = MemWriter::new();
writeFn(&mut writer);
writer.inner()
}
#[cfg(test)]

View File

@ -15,7 +15,7 @@ use from_str::FromStr;
use option::{Option, None, Some};
type Port = u16;
pub type Port = u16;
#[deriving(Eq, TotalEq, Clone)]
pub enum IpAddr {