#[repr(C)]pub enum CURLUcode {
CURLUE_OK = 0,
CURLUE_BAD_HANDLE = 1,
CURLUE_BAD_PARTPOINTER = 2,
CURLUE_MALFORMED_INPUT = 3,
CURLUE_BAD_PORT_NUMBER = 4,
CURLUE_UNSUPPORTED_SCHEME = 5,
CURLUE_OUT_OF_MEMORY = 7,
CURLUE_NO_SCHEME = 8,
CURLUE_NO_HOST = 9,
CURLUE_UNKNOWN_PART = 11,
}Expand description
CURLUcode — result codes for URL API operations.
Variants§
CURLUE_OK = 0
CURLUE_BAD_HANDLE = 1
CURLUE_BAD_PARTPOINTER = 2
CURLUE_MALFORMED_INPUT = 3
CURLUE_BAD_PORT_NUMBER = 4
CURLUE_UNSUPPORTED_SCHEME = 5
CURLUE_OUT_OF_MEMORY = 7
CURLUE_NO_SCHEME = 8
CURLUE_NO_HOST = 9
CURLUE_UNKNOWN_PART = 11
Trait Implementations§
impl Copy for CURLUcode
impl Eq for CURLUcode
impl StructuralPartialEq for CURLUcode
Auto Trait Implementations§
impl Freeze for CURLUcode
impl RefUnwindSafe for CURLUcode
impl Send for CURLUcode
impl Sync for CURLUcode
impl Unpin for CURLUcode
impl UnsafeUnpin for CURLUcode
impl UnwindSafe for CURLUcode
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.