Struct olio::fs::rc::ReadPos [] [src]

pub struct ReadPos { /* fields omitted */ }

Re-implements Read and Seek over a shared File reference using only positioned reads, and by maintaining an instance independent position.

A fixed length is passed on construction and used solely to interpret SeekFrom::End. Reads are not constrained by this length. The length is neither checked nor updated via file metadata, and could deviate from the underlying file length if concurrent writes or truncation is possible. Reads beyond the end of the underlying File will return 0 length. Seeking past the end is allowed by the platforms for File, and is also allowed for ReadPos.

Methods

impl ReadPos
[src]

Important traits for ReadPos
[src]

New instance by File reference and fixed file length. The initial position is the start of the file.

[src]

Return the length as provided on construction. This may differ from the underlying file length.

[src]

Return true if length is 0.

Important traits for ReadSlice
[src]

Return a new and independent ReadSlice for the same file, for the range of byte offsets start..end. Panics if start is greater than end. Note that end is not checked against the constructed length.

[src]

Return the current instance position. This is a convenience shorthand for seek(SeekFrom::Current(0)), is infallable, and does not require a mutable reference.

Trait Implementations

impl Debug for ReadPos
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ReadPos
[src]

Important traits for ReadPos
[src]

Return a new, independent ReadPos with the same length and file reference as self, and with position 0 (ignores the current position of self).

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PosRead for ReadPos
[src]

[src]

Read some bytes, starting at the specified offset, into the specified buffer and return the number of bytes read. The offset is from the start of the underlying file or file range. The position of the underlying file pointer (aka cursor) is not used. It is platform dependent whether the underlying file pointer is modified by this operation. Read more

impl Read for ReadPos
[src]

[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

[src]

🔬 This is a nightly-only experimental API. (read_initializer)

Determines if this Reader can work with buffers of uninitialized memory. Read more

1.0.0
[src]

Read all bytes until EOF in this source, placing them into buf. Read more

1.0.0
[src]

Read all bytes until EOF in this source, appending them to buf. Read more

1.6.0
[src]

Read the exact number of bytes required to fill buf. Read more

1.0.0
[src]

Creates a "by reference" adaptor for this instance of Read. Read more

1.0.0
[src]

Transforms this Read instance to an [Iterator] over its bytes. Read more

[src]

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an [Iterator] over [char]s. Read more

1.0.0
[src]

Creates an adaptor which will chain this stream with another. Read more

1.0.0
[src]

Creates an adaptor which will read at most limit bytes from it. Read more

impl Seek for ReadPos
[src]

[src]

Seek to an offset, in bytes, in a stream. Read more

Auto Trait Implementations

impl Send for ReadPos

impl Sync for ReadPos