Expand description
The whole set of structs and functions to handle u8 vectors.
§Create a data editor
§References (recommended)
read_refcreates a reader from aVec<u8>reference.write_refcreates a writer from a mutableVec<u8>reference.rw_refcreates a reader and writer from a mutableVec<u8>reference.
§Owned data
readcreates a reader from aVec<u8>.writecreates a writer from aVec<u8>.rwcreates a reader and writer from aVec<u8>.
§Close a data editor and get the data
Structs§
- A
Vec<u8>reader. - A
Vec<u8>reference reader. - A
Vec<u8>reader and writer. - A
Vec<u8>reference reader and writer. - A
Vec<u8>writer. - A
Vec<u8>reference writer.
Enums§
- Enumerates all the possible data types that can be passed into the
closefunction. - Enumerates all the possible data types that can be passed into the
close_mutfunction. - Enumerates all the possible data types that can be passed into the
close_reffunction.
Functions§
- Closes a reader, writer, or reader and writer and returns the data the structure was holding.
- Closes a writer or reader and writer and returns the mutable reference to the data it refers to.
- Closes a reader, writer, or reader and writer and returns the reference to the data it refers to.
- Creates a new reader from a
Vec<u8>. - Creates a new reader from a
Vec<u8>reference. - Creates a new reader and writer from a
Vec<u8>. - Creates an empty
Vec<u8>reader and writer. - Creates a new
Vec<u8>reader and writer with a specific length. - Creates a new reader and writer from a
Vec<u8>reference. - Creates a new writer from a
Vec<u8>. - Creates an empty
Vec<u8>writer. - Creates a new
Vec<u8>writer with a specific length. - Creates a new writer from a
Vec<u8>reference.