[][src]Struct splr::types::CNFReader

pub struct CNFReader {
    pub cnf: CNFDescription,
    pub reader: BufReader<File>,
}

A wrapper structure to make a CNFDescription from a file. To make CNFDescription clonable, a BufReader should be separated from it. If you want to make a CNFDescription which isn't connected to a file, just call CNFDescription::default() directly.

Fields

cnf: CNFDescriptionreader: BufReader<File>

Trait Implementations

impl Debug for CNFReader[src]

impl TryFrom<&'_ PathBuf> for CNFReader[src]

type Error = SolverError

The type returned in the event of a conversion error.

impl TryFrom<&'_ str> for CNFReader[src]

type Error = SolverError

The type returned in the event of a conversion error.

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.