Struct BinlogFile

Source
pub struct BinlogFile<I: Seek + Read> { /* private fields */ }
Expand description

Low level wrapper around a single Binlog file. Use this if you want to introspect all events (including internal events like the FDE and TME)

Implementations§

Source§

impl BinlogFile<File>

Source

pub fn try_from_path<R: AsRef<Path>>(path: R) -> Result<Self, BinlogParseError>

Construct a new BinLogFile from the given path

Opens the file and reads/parses the FDE at construction time

Source§

impl<I: Seek + Read> BinlogFile<I>

Source

pub fn try_from_reader(reader: I) -> Result<Self, BinlogParseError>

Source

pub fn events(self, offset: Option<u64>) -> BinlogEvents<I>

Iterate throgh events in this BinLog file, optionally from the given starting offset.

Source

pub fn file_name(&self) -> Option<&Path>

Auto Trait Implementations§

§

impl<I> Freeze for BinlogFile<I>
where I: Freeze,

§

impl<I> RefUnwindSafe for BinlogFile<I>
where I: RefUnwindSafe,

§

impl<I> Send for BinlogFile<I>
where I: Send,

§

impl<I> Sync for BinlogFile<I>
where I: Sync,

§

impl<I> Unpin for BinlogFile<I>
where I: Unpin,

§

impl<I> UnwindSafe for BinlogFile<I>
where I: UnwindSafe,

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> Same for T

Source§

type Output = T

Should always be Self
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V