pub struct JsProblemDefinition { /* private fields */ }Implementations§
Source§impl JsProblemDefinition
impl JsProblemDefinition
pub fn from_real_vector_state( space: &JsRealVectorStateSpace, start: &JsRealVectorState, goal: &JsGoal, ) -> Self
pub fn from_so2_state( space: &JsSO2StateSpace, start: &JsSO2State, goal: &JsGoal, ) -> Self
pub fn from_so3_state( space: &JsSO3StateSpace, start: &JsSO3State, goal: &JsGoal, ) -> Self
pub fn from_se2_state( space: &JsSE2StateSpace, start: &JsSE2State, goal: &JsGoal, ) -> Self
pub fn from_se3_state( space: &JsSE3StateSpace, start: &JsSE3State, goal: &JsGoal, ) -> Self
pub fn from_compound_state( space: &JsCompoundStateSpace, start: &JsCompoundState, goal: &JsGoal, ) -> Self
Trait Implementations§
Source§impl From<JsProblemDefinition> for JsValue
impl From<JsProblemDefinition> for JsValue
Source§fn from(value: JsProblemDefinition) -> Self
fn from(value: JsProblemDefinition) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for JsProblemDefinition
impl FromWasmAbi for JsProblemDefinition
Source§impl IntoWasmAbi for JsProblemDefinition
impl IntoWasmAbi for JsProblemDefinition
Source§impl RefFromWasmAbi for JsProblemDefinition
impl RefFromWasmAbi for JsProblemDefinition
Source§type Anchor = RcRef<JsProblemDefinition>
type Anchor = RcRef<JsProblemDefinition>
The type that holds the reference to
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.impl SupportsConstructor for JsProblemDefinition
impl SupportsInstanceProperty for JsProblemDefinition
impl SupportsStaticProperty for JsProblemDefinition
Source§impl TryFromJsValue for JsProblemDefinition
impl TryFromJsValue for JsProblemDefinition
Source§impl VectorFromWasmAbi for JsProblemDefinition
impl VectorFromWasmAbi for JsProblemDefinition
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[JsProblemDefinition]>
Source§impl VectorIntoWasmAbi for JsProblemDefinition
impl VectorIntoWasmAbi for JsProblemDefinition
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[JsProblemDefinition]>) -> Self::Abi
Source§impl WasmDescribeVector for JsProblemDefinition
impl WasmDescribeVector for JsProblemDefinition
Auto Trait Implementations§
impl !RefUnwindSafe for JsProblemDefinition
impl !Send for JsProblemDefinition
impl !Sync for JsProblemDefinition
impl !UnwindSafe for JsProblemDefinition
impl Freeze for JsProblemDefinition
impl Unpin for JsProblemDefinition
impl UnsafeUnpin for JsProblemDefinition
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> 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::AbiSource§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.