[][src]Struct libflate::finish::Finish

pub struct Finish<T, E> { /* fields omitted */ }

Finish is a type that represents a value which may have an error occurred during the computation.

Logically, Finish<T, E> is equivalent to Result<T, (T, E)>.

Methods

impl<T, E> Finish<T, E>[src]

pub fn new(value: T, error: Option<E>) -> Self[src]

Makes a new instance.

Examples

use libflate::Finish;

// The result value of a succeeded computation
let succeeded = Finish::new("value", None as Option<()>);
assert_eq!(succeeded.into_result(), Ok("value"));

// The result value of a failed computation
let failed = Finish::new("value", Some("error"));
assert_eq!(failed.into_result(), Err("error"));

pub fn unwrap(self) -> (T, Option<E>)[src]

Unwraps the instance.

Examples

use libflate::Finish;

let succeeded = Finish::new("value", None as Option<()>);
assert_eq!(succeeded.unwrap(), ("value", None));

let failed = Finish::new("value", Some("error"));
assert_eq!(failed.unwrap(), ("value", Some("error")));

pub fn into_result(self) -> Result<T, E>[src]

Converts from Finish<T, E> to Result<T, E>.

Examples

use libflate::Finish;

let succeeded = Finish::new("value", None as Option<()>);
assert_eq!(succeeded.into_result(), Ok("value"));

let failed = Finish::new("value", Some("error"));
assert_eq!(failed.into_result(), Err("error"));

pub fn as_result(&self) -> Result<&T, &E>[src]

Converts from Finish<T, E> to Result<&T, &E>.

Examples

use libflate::Finish;

let succeeded = Finish::new("value", None as Option<()>);
assert_eq!(succeeded.as_result(), Ok(&"value"));

let failed = Finish::new("value", Some("error"));
assert_eq!(failed.as_result(), Err(&"error"));

Trait Implementations

impl<T: Clone, E: Clone> Clone for Finish<T, E>[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: PartialEq, E: PartialEq> PartialEq<Finish<T, E>> for Finish<T, E>[src]

impl<T: PartialOrd, E: PartialOrd> PartialOrd<Finish<T, E>> for Finish<T, E>[src]

impl<T: Eq, E: Eq> Eq for Finish<T, E>[src]

impl<T: Default, E: Default> Default for Finish<T, E>[src]

impl<T: Ord, E: Ord> Ord for Finish<T, E>[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

default fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

default fn clamp(self, min: Self, max: Self) -> Self[src]

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

Restrict a value to a certain interval. Read more

impl<T: Hash, E: Hash> Hash for Finish<T, E>[src]

default fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T: Debug, E: Debug> Debug for Finish<T, E>[src]

Auto Trait Implementations

impl<T, E> Send for Finish<T, E> where
    E: Send,
    T: Send

impl<T, E> Sync for Finish<T, E> where
    E: Sync,
    T: Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.