pub enum BitSeekFrom {
    Start(u64u64),
    Current(i64i64),
    End(i64i64),
}

Variants

Start(u64u64)

Seek a given number of (bytes, bits) forwards from the start of the buffer.

Current(i64i64)

Seek a given number of (bytes, bits) in either direction from the current position.

End(i64i64)

Seek a given number of (bytes, bits) backwards from the end of the buffer.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.