#[repr(u32)]pub enum evmc_set_option_result {
EVMC_SET_OPTION_SUCCESS = 0,
EVMC_SET_OPTION_INVALID_NAME = 1,
EVMC_SET_OPTION_INVALID_VALUE = 2,
}Expand description
Possible outcomes of evmc_set_option.
Variants§
Trait Implementations§
Source§impl Clone for evmc_set_option_result
impl Clone for evmc_set_option_result
Source§fn clone(&self) -> evmc_set_option_result
fn clone(&self) -> evmc_set_option_result
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 evmc_set_option_result
impl Debug for evmc_set_option_result
Source§impl Hash for evmc_set_option_result
impl Hash for evmc_set_option_result
Source§impl PartialEq for evmc_set_option_result
impl PartialEq for evmc_set_option_result
impl Copy for evmc_set_option_result
impl Eq for evmc_set_option_result
impl StructuralPartialEq for evmc_set_option_result
Auto Trait Implementations§
impl Freeze for evmc_set_option_result
impl RefUnwindSafe for evmc_set_option_result
impl Send for evmc_set_option_result
impl Sync for evmc_set_option_result
impl Unpin for evmc_set_option_result
impl UnwindSafe for evmc_set_option_result
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