Enum nstd_sys::core::result::NSTDResult
source · #[repr(u8)]#[repr(C)]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 copy 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: PartialEq, E: PartialEq> PartialEq<NSTDResult<T, E>> for NSTDResult<T, E>
impl<T: PartialEq, E: PartialEq> PartialEq<NSTDResult<T, E>> for NSTDResult<T, E>
source§fn eq(&self, other: &NSTDResult<T, E>) -> bool
fn eq(&self, other: &NSTDResult<T, E>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<T: PartialOrd, E: PartialOrd> PartialOrd<NSTDResult<T, E>> for NSTDResult<T, E>
impl<T: PartialOrd, E: PartialOrd> PartialOrd<NSTDResult<T, E>> for NSTDResult<T, E>
source§fn partial_cmp(&self, other: &NSTDResult<T, E>) -> Option<Ordering>
fn partial_cmp(&self, other: &NSTDResult<T, E>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl<T: Copy, E: Copy> Copy for NSTDResult<T, E>
impl<T: Eq, E: Eq> Eq for NSTDResult<T, E>
impl<T, E> StructuralEq for NSTDResult<T, E>
impl<T, E> StructuralPartialEq for NSTDResult<T, E>
Auto Trait Implementations§
impl<T, E> RefUnwindSafe for NSTDResult<T, E>where E: RefUnwindSafe, T: RefUnwindSafe,
impl<T, E> Send for NSTDResult<T, E>where E: Send, T: Send,
impl<T, E> Sync for NSTDResult<T, E>where E: Sync, T: Sync,
impl<T, E> Unpin for NSTDResult<T, E>where E: Unpin, T: Unpin,
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