pub struct PerceptionConfig {
pub scene_graph: SceneGraphConfig,
pub obstacle: ObstacleConfig,
}Expand description
Aggregated configuration for the full perception pipeline.
Fields§
§scene_graph: SceneGraphConfig§obstacle: ObstacleConfigTrait Implementations§
Source§impl Clone for PerceptionConfig
impl Clone for PerceptionConfig
Source§fn clone(&self) -> PerceptionConfig
fn clone(&self) -> PerceptionConfig
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 PerceptionConfig
impl Debug for PerceptionConfig
Source§impl Default for PerceptionConfig
impl Default for PerceptionConfig
Source§fn default() -> PerceptionConfig
fn default() -> PerceptionConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PerceptionConfig
impl<'de> Deserialize<'de> for PerceptionConfig
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 PerceptionConfig
impl PartialEq for PerceptionConfig
Source§impl Serialize for PerceptionConfig
impl Serialize for PerceptionConfig
impl StructuralPartialEq for PerceptionConfig
Auto Trait Implementations§
impl Freeze for PerceptionConfig
impl RefUnwindSafe for PerceptionConfig
impl Send for PerceptionConfig
impl Sync for PerceptionConfig
impl Unpin for PerceptionConfig
impl UnsafeUnpin for PerceptionConfig
impl UnwindSafe for PerceptionConfig
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