#[repr(C)]pub enum REQUEST_STATE {
PENDING = 0,
SUCCESS = 1,
FAILURE = 2,
}
Expand description
Completion state of a request.
Variants§
PENDING = 0
The request is pending.
SUCCESS = 1
Completed successfully.
FAILURE = 2
Completed with failure.
Trait Implementations§
Source§impl Debug for REQUEST_STATE
impl Debug for REQUEST_STATE
Source§impl PartialEq for REQUEST_STATE
impl PartialEq for REQUEST_STATE
impl StructuralPartialEq for REQUEST_STATE
Auto Trait Implementations§
impl Freeze for REQUEST_STATE
impl RefUnwindSafe for REQUEST_STATE
impl Send for REQUEST_STATE
impl Sync for REQUEST_STATE
impl Unpin for REQUEST_STATE
impl UnwindSafe for REQUEST_STATE
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