pub struct SemanticLocation {
pub zone: Option<String>,
pub zone_type: Option<String>,
pub area: Option<String>,
pub building: Option<String>,
pub room: Option<String>,
pub landmark: Option<String>,
pub waypoint: Option<String>,
pub node_id: Option<String>,
pub edge_id: Option<String>,
}Expand description
Semantic location information.
Fields§
§zone: Option<String>Zone name (e.g., “picking_zone_a”, “charging_area”)
zone_type: Option<String>Zone type (e.g., “work_area”, “transit”, “restricted”)
area: Option<String>Area name (e.g., “warehouse_east”, “loading_dock”)
building: Option<String>Building name
room: Option<String>Room name or identifier
landmark: Option<String>Nearest landmark or point of interest
waypoint: Option<String>Named waypoint identifier
node_id: Option<String>Node ID in navigation graph
edge_id: Option<String>Edge ID in navigation graph (if on an edge)
Trait Implementations§
Source§impl Clone for SemanticLocation
impl Clone for SemanticLocation
Source§fn clone(&self) -> SemanticLocation
fn clone(&self) -> SemanticLocation
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 SemanticLocation
impl Debug for SemanticLocation
Source§impl Default for SemanticLocation
impl Default for SemanticLocation
Source§fn default() -> SemanticLocation
fn default() -> SemanticLocation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SemanticLocation
impl<'de> Deserialize<'de> for SemanticLocation
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
Auto Trait Implementations§
impl Freeze for SemanticLocation
impl RefUnwindSafe for SemanticLocation
impl Send for SemanticLocation
impl Sync for SemanticLocation
impl Unpin for SemanticLocation
impl UnwindSafe for SemanticLocation
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