Struct path_abs::FileRead[][src]

pub struct FileRead(_);

A read-only file handle with path() attached and improved error messages. Contains only the methods and trait implementations which are allowed by a read-only file.

Examples

use std::io::Read;
use path_abs::{PathFile, FileRead};

let example = "example.txt";
let file = PathFile::create(example)?;

let expected = "foo\nbar";
file.write_str(expected)?;

let mut read = FileRead::open(example)?;
let mut s = String::new();
read.read_to_string(&mut s)?;
assert_eq!(expected, s);

Implementations

impl FileRead[src]

pub fn open<P: AsRef<Path>>(path: P) -> Result<FileRead>[src]

Open the file as read-only.

pub fn path(&self) -> &PathFile[src]

pub fn read_string(&mut self) -> Result<String>[src]

Read what remains of the file to a String.

Trait Implementations

impl AsRef<File> for FileRead[src]

impl AsRef<FileOpen> for FileRead[src]

impl Borrow<File> for FileRead[src]

impl<'a> Borrow<File> for &'a FileRead[src]

impl Borrow<FileOpen> for FileRead[src]

impl<'a> Borrow<FileOpen> for &'a FileRead[src]

impl Debug for FileRead[src]

impl From<FileRead> for FileOpen[src]

impl Read for FileRead[src]

impl Seek for FileRead[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, 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.