pub struct PlanningOptions {
pub planning_scene_diff: PlanningScene,
pub plan_only: bool,
pub look_around: bool,
pub look_around_attempts: i32,
pub max_safe_execution_cost: f64,
pub replan: bool,
pub replan_attempts: i32,
pub replan_delay: f64,
}Fields§
§planning_scene_diff: PlanningScene§plan_only: bool§look_around: bool§look_around_attempts: i32§max_safe_execution_cost: f64§replan: bool§replan_attempts: i32§replan_delay: f64Trait Implementations§
Source§impl Clone for PlanningOptions
impl Clone for PlanningOptions
Source§fn clone(&self) -> PlanningOptions
fn clone(&self) -> PlanningOptions
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 PlanningOptions
impl Debug for PlanningOptions
Source§impl Default for PlanningOptions
impl Default for PlanningOptions
Source§impl<'de> Deserialize<'de> for PlanningOptions
impl<'de> Deserialize<'de> for PlanningOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PlanningOptions
impl PartialEq for PlanningOptions
Source§impl Serialize for PlanningOptions
impl Serialize for PlanningOptions
impl Message for PlanningOptions
impl StructuralPartialEq for PlanningOptions
Auto Trait Implementations§
impl Freeze for PlanningOptions
impl RefUnwindSafe for PlanningOptions
impl Send for PlanningOptions
impl Sync for PlanningOptions
impl Unpin for PlanningOptions
impl UnwindSafe for PlanningOptions
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