Struct beam_file::chunk::ExpTChunk
[−]
[src]
pub struct ExpTChunk {
pub exports: Vec<Export>,
}A representation of the "ExpT" chunk.
Fields
exports: Vec<Export>
The list of exported functions.
Trait Implementations
impl Debug for ExpTChunk[src]
impl PartialEq for ExpTChunk[src]
fn eq(&self, __arg_0: &ExpTChunk) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ExpTChunk) -> bool
This method tests for !=.
impl Eq for ExpTChunk[src]
impl Chunk for ExpTChunk[src]
fn id(&self) -> &Id
Returns the identifier of the chunk.
fn decode_data<R: Read>(id: &Id, reader: R) -> Result<Self> where
Self: Sized,
Self: Sized,
Reads a chunk which has the identifier id from reader. Read more
fn encode_data<W: Write>(&self, writer: W) -> Result<()>
Writes the data of the chunk to writer. Read more
fn decode<R: Read>(reader: R) -> Result<Self> where
Self: Sized,
Self: Sized,
Reads a chunk from reader.
fn encode<W: Write>(&self, writer: W) -> Result<()>
Writes the chunk to writer.