#[repr(C)]pub enum CURLMcode {
CURLM_OK = 0,
CURLM_BAD_HANDLE = -1,
CURLM_BAD_EASY_HANDLE = -2,
CURLM_OUT_OF_MEMORY = -3,
CURLM_INTERNAL_ERROR = -4,
CURLM_UNKNOWN_OPTION = -6,
}Expand description
CURLMcode — result codes for multi handle operations.
Variants§
CURLM_OK = 0
CURLM_BAD_HANDLE = -1
CURLM_BAD_EASY_HANDLE = -2
CURLM_OUT_OF_MEMORY = -3
CURLM_INTERNAL_ERROR = -4
CURLM_UNKNOWN_OPTION = -6
Trait Implementations§
impl Copy for CURLMcode
impl Eq for CURLMcode
impl StructuralPartialEq for CURLMcode
Auto Trait Implementations§
impl Freeze for CURLMcode
impl RefUnwindSafe for CURLMcode
impl Send for CURLMcode
impl Sync for CURLMcode
impl Unpin for CURLMcode
impl UnsafeUnpin for CURLMcode
impl UnwindSafe for CURLMcode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.