pub trait VFileBuilder: Sync + Send + Serialize + Deserialize {
    fn open(&self) -> Result<Box<dyn VFile>>;
fn size(&self) -> u64; }
Expand description
  • A trait that generate VFile trait object.

Required methods

Create and a return a VFile trait object

Return the size of the created VFile

Trait Implementations

Formats the value using the given formatter. Read more

Serialize this value into the given Serde serializer. Read more

Serialize this value into the given Serde serializer. Read more

Serialize this value into the given Serde serializer. Read more

Serialize this value into the given Serde serializer. Read more

Implementors