pub enum UciOptionType {
Check(Check),
Spin(Spin),
Combo(Combo),
Button(Button),
String(UciOptionString),
}
Variants§
Trait Implementations§
Source§impl Clone for UciOptionType
impl Clone for UciOptionType
Source§fn clone(&self) -> UciOptionType
fn clone(&self) -> UciOptionType
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 UciOptionType
impl Debug for UciOptionType
Source§impl Display for UciOptionType
impl Display for UciOptionType
Source§impl PartialEq for UciOptionType
impl PartialEq for UciOptionType
impl Eq for UciOptionType
impl StructuralPartialEq for UciOptionType
Auto Trait Implementations§
impl Freeze for UciOptionType
impl RefUnwindSafe for UciOptionType
impl Send for UciOptionType
impl Sync for UciOptionType
impl Unpin for UciOptionType
impl UnwindSafe for UciOptionType
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