Skip to main content

OptionsMut

Struct OptionsMut 

Source
pub struct OptionsMut<'g> { /* private fields */ }

Implementations§

Source§

impl<'g> OptionsMut<'g>

Source

pub fn push_uci(&mut self, uci: Move) -> Result<PlayMut<'_>, Error>

Source

pub fn into_push_uci(self, uci: Move) -> Result<PlayMut<'g>, Error>

Source§

impl OptionsMut<'_>

Source

pub fn as_ref(&self) -> OptionsRef<'_>

Source§

impl<'g> OptionsMut<'g>

Source

pub fn push(&mut self, play: Move) -> Result<PlayMut<'_>, Error>

Source

pub fn into_push(self, play: Move) -> Result<PlayMut<'g>, Error>

Source

pub fn insert(&mut self, index: usize, play: Move) -> Result<PlayMut<'_>, Error>

Source

pub fn into_insert(self, index: usize, play: Move) -> Result<PlayMut<'g>, Error>

Source

pub fn into_get(self, play: Move) -> Option<PlayMut<'g>>

Source

pub fn into_get_index(self, index: usize) -> Option<PlayMut<'g>>

Source

pub fn remove(&mut self, play: Move) -> bool

Source

pub fn swap(&mut self, a: Move, b: Move) -> bool

Source

pub fn raise(&mut self, play: Move) -> bool

Source

pub fn lower(&mut self, play: Move) -> bool

Source

pub fn promote(&mut self, play: Move) -> bool

Auto Trait Implementations§

§

impl<'g> !UnwindSafe for OptionsMut<'g>

§

impl<'g> Freeze for OptionsMut<'g>

§

impl<'g> RefUnwindSafe for OptionsMut<'g>

§

impl<'g> Send for OptionsMut<'g>

§

impl<'g> Sync for OptionsMut<'g>

§

impl<'g> Unpin for OptionsMut<'g>

§

impl<'g> UnsafeUnpin for OptionsMut<'g>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.