//! This module defines the BinaryObject, which represents a piece of unstructured binary data
//! of any type.
use File;
use Read;
/// A struct that represents an unstructured piece of binary data in the form of a `Vec<u8>`.
/// It also includes the option of having a `String` to designate the path.
// see issue #22