[][src]Struct libpijul::change::ChangeFile

pub struct ChangeFile<'a> { /* fields omitted */ }

An open, seekable change file.

Implementations

impl<'a> ChangeFile<'a>[src]

pub fn open(hash: Hash, path: &str) -> Result<Self, Error>[src]

Open a change file from a path.

pub fn has_contents(&self) -> bool[src]

pub fn read_contents(
    &mut self,
    offset: u64,
    buf: &mut [u8]
) -> Result<usize, Error>
[src]

Reads the contents at an offset into buf, and returns the number of bytes read. The bounds of the change's "contents" section are not checked.

pub fn hashed(&self) -> &Hashed<Local>[src]

pub fn unhashed(&self) -> &Option<Value>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ChangeFile<'a>

impl<'a> Send for ChangeFile<'a> where
    'a: 'static, 

impl<'a> !Sync for ChangeFile<'a>

impl<'a> Unpin for ChangeFile<'a>

impl<'a> UnwindSafe for ChangeFile<'a>

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

type Output = T

Should always be Self

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.

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