[][src]Struct varisat_lrat::WriteLrat

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

Proof processor that generates an LRAT proof.

Implementations

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

pub fn new(target: impl Write + 'a, binary: bool) -> WriteLrat<'a>[src]

Create a lrat writing processor.

The proof is written to target. If binary is false a normal LRAT proof is emitted. If it is true, the compressed LRAT format is used which is a compact binary encoding. Despite the name, even a compressed LRAT proof can usually still be compressed a lot using a general data compression algorithm.

pub fn flush(&mut self) -> Result<(), Error>[src]

Write out all steps processed so far.

This is automatically called when this proof processor is dropped. Calling this explicitly is recommended to handle possible IO errors.

Trait Implementations

impl<'a> Drop for WriteLrat<'a>[src]

impl<'a> ProofProcessor for WriteLrat<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for WriteLrat<'a>

impl<'a> !Send for WriteLrat<'a>

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

impl<'a> Unpin for WriteLrat<'a>

impl<'a> !UnwindSafe for WriteLrat<'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<Reference, Outer, OuterFieldType, Inner> HasPart<Nested<Outer, Inner>> for Reference where
    Inner: Part,
    Outer: Part<PartType = Field<OuterFieldType>>,
    OuterFieldType: HasPart<Inner, RawTarget = OuterFieldType> + PartialRefTarget + ?Sized,
    Reference: HasPart<Outer> + ?Sized

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.

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