Enum EbmlEncoderTag

Variants

Struct Doc

pub struct Doc {
    data: @~[u8],
    start: uint,
    end: uint,
}

Struct TaggedDoc

pub struct TaggedDoc {
    tag: uint,
    doc: Doc,
}

Implementation for Doc

Method get

fn get(&self, tag: uint) -> Doc

Method as_str_slice

fn as_str_slice<'a>(&'a self) -> &'a str

Method as_str

fn as_str(&self) -> ~str