[][src]Struct fend_core::FendResult

pub struct FendResult { /* fields omitted */ }

This contains the result of a computation.

Implementations

impl FendResult[src]

#[must_use]pub fn get_main_result(&self) -> &str[src]

This retrieves the main result of the computation.

pub fn get_other_info(&self) -> impl Iterator<Item = &str>[src]

This retrieves a list of other results of the computation. It is less stable than the main result, and should only be shown for when used interactively.

Trait Implementations

impl Debug for FendResult[src]

impl Eq for FendResult[src]

impl PartialEq<FendResult> for FendResult[src]

impl StructuralEq for FendResult[src]

impl StructuralPartialEq for FendResult[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.