pub enum SemaphorePostError {
Overflow,
UnknownError(i32),
}Variants§
Trait Implementations§
Source§impl Clone for SemaphorePostError
impl Clone for SemaphorePostError
Source§fn clone(&self) -> SemaphorePostError
fn clone(&self) -> SemaphorePostError
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 Debug for SemaphorePostError
impl Debug for SemaphorePostError
Source§impl From<SemaphorePostError> for SemaphoreError
impl From<SemaphorePostError> for SemaphoreError
Source§fn from(_: SemaphorePostError) -> SemaphoreError
fn from(_: SemaphorePostError) -> SemaphoreError
Converts to this type from the input type.
Source§impl Hash for SemaphorePostError
impl Hash for SemaphorePostError
Source§impl PartialEq for SemaphorePostError
impl PartialEq for SemaphorePostError
impl Copy for SemaphorePostError
impl Eq for SemaphorePostError
impl StructuralPartialEq for SemaphorePostError
Auto Trait Implementations§
impl Freeze for SemaphorePostError
impl RefUnwindSafe for SemaphorePostError
impl Send for SemaphorePostError
impl Sync for SemaphorePostError
impl Unpin for SemaphorePostError
impl UnwindSafe for SemaphorePostError
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