pub struct Sudoku { /* private fields */ }
Implementations§
Source§impl Sudoku
impl Sudoku
pub fn from_values(str: &str) -> Self
pub fn from_candidates(str: &str) -> Self
pub fn to_value_string(&self) -> String
pub fn to_candidate_string(&self) -> String
Trait Implementations§
Source§impl FromWasmAbi for Sudoku
impl FromWasmAbi for Sudoku
Source§impl IntoWasmAbi for Sudoku
impl IntoWasmAbi for Sudoku
Source§impl LongRefFromWasmAbi for Sudoku
impl LongRefFromWasmAbi for Sudoku
Source§impl OptionFromWasmAbi for Sudoku
impl OptionFromWasmAbi for Sudoku
Source§impl OptionIntoWasmAbi for Sudoku
impl OptionIntoWasmAbi for Sudoku
Source§impl RefFromWasmAbi for Sudoku
impl RefFromWasmAbi for Sudoku
Source§impl RefMutFromWasmAbi for Sudoku
impl RefMutFromWasmAbi for Sudoku
Source§impl TryFromJsValue for Sudoku
impl TryFromJsValue for Sudoku
Source§impl VectorFromWasmAbi for Sudoku
impl VectorFromWasmAbi for Sudoku
Source§impl VectorIntoWasmAbi for Sudoku
impl VectorIntoWasmAbi for Sudoku
impl SupportsConstructor for Sudoku
impl SupportsInstanceProperty for Sudoku
impl SupportsStaticProperty for Sudoku
Auto Trait Implementations§
impl Freeze for Sudoku
impl !RefUnwindSafe for Sudoku
impl Send for Sudoku
impl !Sync for Sudoku
impl Unpin for Sudoku
impl UnwindSafe for Sudoku
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.