Struct ZipFileSeek
struct ZipFileSeek<'a, R> { ... }
A struct for reading and seeking a zip file
Implementations
impl<'a, R> Freeze for ZipFileSeek<'a, R>
impl<'a, R> RefUnwindSafe for ZipFileSeek<'a, R>
impl<'a, R> Send for ZipFileSeek<'a, R>
impl<'a, R> Sync for ZipFileSeek<'a, R>
impl<'a, R> Unpin for ZipFileSeek<'a, R>
impl<'a, R> UnwindSafe for ZipFileSeek<'a, R>
impl<R> HasZipMetadata for ZipFileSeek<'_, R>
fn get_metadata(self: &Self) -> &ZipFileData
impl<R> LittleEndianReadExt for ZipFileSeek<'a, R>
impl<R: Read> Read for ZipFileSeek<'_, R>
fn read(self: &mut Self, buf: &mut [u8]) -> io::Result<usize>
impl<R: Seek> Seek for ZipFileSeek<'_, R>
fn seek(self: &mut Self, pos: SeekFrom) -> io::Result<u64>
impl<T> Any for ZipFileSeek<'a, R>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for ZipFileSeek<'a, R>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for ZipFileSeek<'a, R>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for ZipFileSeek<'a, R>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> Same for ZipFileSeek<'a, R>
impl<T, U> Into for ZipFileSeek<'a, R>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for ZipFileSeek<'a, R>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for ZipFileSeek<'a, R>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>