Struct ZipFileSeek

pub struct ZipFileSeek<'a, R> { /* private fields */ }

A struct for reading and seeking a zip file

Trait Implementations

impl<R> HasZipMetadata for ZipFileSeek<'_, R>

fn get_metadata(&self) -> &ZipFileData

impl<R: Read> Read for ZipFileSeek<'_, R>

fn read(&mut self, buf: &mut [u8]) -> Result<usize>

impl<R: Seek> Seek for ZipFileSeek<'_, R>

fn seek(&mut self, pos: SeekFrom) -> Result<u64>

Auto Trait Implementations

impl<'a, R> !Freeze for ZipFileSeek<'a, R>

impl<'a, R> !UnwindSafe for ZipFileSeek<'a, R>

impl<'a, R> RefUnwindSafe for ZipFileSeek<'a, R> where ZipFileSeekReader<'a, R>: RefUnwindSafe,

impl<'a, R> Send for ZipFileSeek<'a, R> where ZipFileSeekReader<'a, R>: Send,

impl<'a, R> Sync for ZipFileSeek<'a, R> where ZipFileSeekReader<'a, R>: Sync,

impl<'a, R> Unpin for ZipFileSeek<'a, R> where ZipFileSeekReader<'a, R>: Unpin,

impl<'a, R> UnsafeUnpin for ZipFileSeek<'a, R> where ZipFileSeekReader<'a, R>: UnsafeUnpin,

Blanket Implementations

impl<R> LittleEndianReadExt for ZipFileSeek<'a, R> where R: Read,

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

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for ZipFileSeek<'a, R> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for ZipFileSeek<'a, R> where T: ?Sized,

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

impl<T> From<T> for ZipFileSeek<'a, R>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> Same for ZipFileSeek<'a, R>

type Output = T;

impl<T, U> Into<U> for ZipFileSeek<'a, R> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

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

impl<T, U> TryFrom<U> for ZipFileSeek<'a, R> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for ZipFileSeek<'a, R> where U: TryFrom<T>,

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