Struct FileEncoder

Source
pub struct FileEncoder { /* private fields */ }
Expand description

FileEncoder encodes data to file via fixed-size buffer.

There used to be a MemEncoder type that encoded all the data into a Vec. FileEncoder is better because its memory use is determined by the size of the buffer, rather than the full length of the encoded data, and because it doesn’t need to reallocate memory along the way.

Implementations§

Source§

impl FileEncoder

Source

pub fn new<P: AsRef<Path>>(path: P) -> Result<Self>

Source

pub fn position(&self) -> usize

Source

pub fn flush(&mut self)

Source

pub fn file(&self) -> &File

Source

pub fn finish(self) -> Result<usize, Error>

Trait Implementations§

Source§

impl Drop for FileEncoder

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl Encodable<FileEncoder> for [u8]

Source§

fn encode(&self, e: &mut FileEncoder)

Source§

impl Encodable<FileEncoder> for IntEncodedWithFixedSize

Source§

fn encode(&self, e: &mut FileEncoder)

Source§

impl Encoder for FileEncoder

Source§

fn emit_usize(&mut self, v: usize)

Source§

fn emit_u128(&mut self, v: u128)

Source§

fn emit_u64(&mut self, v: u64)

Source§

fn emit_u32(&mut self, v: u32)

Source§

fn emit_u16(&mut self, v: u16)

Source§

fn emit_u8(&mut self, v: u8)

Source§

fn emit_isize(&mut self, v: isize)

Source§

fn emit_i128(&mut self, v: i128)

Source§

fn emit_i64(&mut self, v: i64)

Source§

fn emit_i32(&mut self, v: i32)

Source§

fn emit_i16(&mut self, v: i16)

Source§

fn emit_raw_bytes(&mut self, s: &[u8])

Source§

fn emit_i8(&mut self, v: i8)

Source§

fn emit_bool(&mut self, v: bool)

Source§

fn emit_char(&mut self, v: char)

Source§

fn emit_str(&mut self, v: &str)

Source§

fn emit_enum_variant<F>(&mut self, v_id: usize, f: F)
where F: FnOnce(&mut Self),

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.