[][src]Struct xp3::index::file::XP3FileIndexTime

pub struct XP3FileIndexTime { /* fields omitted */ }

Index time representing timestamp of target file.

Implementations

impl XP3FileIndexTime[src]

pub fn new(timestamp: u64) -> Self[src]

pub fn timestamp(&self) -> u64[src]

pub fn set_timestamp(&mut self, timestamp: u64)[src]

pub fn from_bytes(stream: &mut impl Read) -> Result<(u64, Self), XP3Error>[src]

Read xp3 file index time from stream.

pub fn write_bytes(&self, stream: &mut impl Write) -> Result<u64, XP3Error>[src]

Write xp3 file time to stream.

Trait Implementations

impl Clone for XP3FileIndexTime[src]

impl Copy for XP3FileIndexTime[src]

impl Debug for XP3FileIndexTime[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.