#[repr(C, u8)]pub enum NSTDResult<T, E> {
Err(E),
Ok(T),
}Available on crate feature
core only.Expand description
Defines a “result” type with success and error variants.
Variants§
Implementations§
Trait Implementations§
Source§impl<T: Clone, E: Clone> Clone for NSTDResult<T, E>
impl<T: Clone, E: Clone> Clone for NSTDResult<T, E>
Source§fn clone(&self) -> NSTDResult<T, E>
fn clone(&self) -> NSTDResult<T, E>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl From<NSTDResult<usize, NSTDUnixIOError>> for NSTDIOResult
Available on crate feature io only.
impl From<NSTDResult<usize, NSTDUnixIOError>> for NSTDIOResult
Available on crate feature
io only.Source§fn from(value: NSTDUnixIOResult) -> Self
fn from(value: NSTDUnixIOResult) -> Self
Converts an NSTDUnixIOResult into an NSTDIOResult.
Source§impl<T: Ord, E: Ord> Ord for NSTDResult<T, E>
impl<T: Ord, E: Ord> Ord for NSTDResult<T, E>
Source§fn cmp(&self, other: &NSTDResult<T, E>) -> Ordering
fn cmp(&self, other: &NSTDResult<T, E>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<T: PartialOrd, E: PartialOrd> PartialOrd for NSTDResult<T, E>
impl<T: PartialOrd, E: PartialOrd> PartialOrd for NSTDResult<T, E>
impl<T: Copy, E: Copy> Copy for NSTDResult<T, E>
impl<T: Eq, E: Eq> Eq for NSTDResult<T, E>
impl<T, E> StructuralPartialEq for NSTDResult<T, E>
Auto Trait Implementations§
impl<T, E> Freeze for NSTDResult<T, E>
impl<T, E> RefUnwindSafe for NSTDResult<T, E>where
E: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, E> Send for NSTDResult<T, E>
impl<T, E> Sync for NSTDResult<T, E>
impl<T, E> Unpin for NSTDResult<T, E>
impl<T, E> UnwindSafe for NSTDResult<T, E>where
E: UnwindSafe,
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more