[−][src]Struct libflate::finish::Finish
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: PartialEq, E: PartialEq> PartialEq<Finish<T, E>> 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][+]
impl<T: Clone, E: Clone> Clone for Finish<T, E>
[src][+]
impl<T: Eq, E: Eq> Eq for Finish<T, E>
[src]
impl<T: PartialOrd, E: PartialOrd> PartialOrd<Finish<T, E>> for Finish<T, E>
[src][+]
impl<T: Debug, E: Debug> Debug for Finish<T, E>
[src][+]
impl<T: Hash, E: Hash> Hash for Finish<T, E>
[src][+]
Auto Trait Implementations
impl<T, E> Send for Finish<T, E> where
E: Send,
T: Send,
E: Send,
T: Send,
impl<T, E> Sync for Finish<T, E> where
E: Sync,
T: Sync,
E: Sync,
T: Sync,
Blanket Implementations
impl<T> From for T
[src][−]
impl<T, U> Into for T where
U: From<T>,
[src][−]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][−]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src][−]
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src][−]
impl<T> Borrow for T where
T: ?Sized,
[src][−]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src][−]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src][−]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src][−]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src][−]
impl<T> Any for T where
T: 'static + ?Sized,
[src][−]
T: 'static + ?Sized,