pub(crate) enum MaliputQuery {
PrintAllLanes,
GetNumberOfLanes,
GetTotalLengthOfTheRoadGeometry,
GetLaneLength(String),
GetLaneBounds(String, f64),
GetSegmentBounds(String, f64),
ToRoadPosition(f64, f64, f64),
ToLanePosition(String, f64, f64, f64),
ToSegmentPosition(String, f64, f64, f64),
ToInertialPosition(String, f64, f64, f64),
GetOrientaiton(String, f64, f64, f64),
Invalid,
}
Variants§
PrintAllLanes
GetNumberOfLanes
GetTotalLengthOfTheRoadGeometry
GetLaneLength(String)
GetLaneBounds(String, f64)
GetSegmentBounds(String, f64)
ToRoadPosition(f64, f64, f64)
ToLanePosition(String, f64, f64, f64)
ToSegmentPosition(String, f64, f64, f64)
ToInertialPosition(String, f64, f64, f64)
GetOrientaiton(String, f64, f64, f64)
Invalid
Implementations§
Source§impl MaliputQuery
impl MaliputQuery
pub(crate) fn print_available_queries()
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MaliputQuery
impl RefUnwindSafe for MaliputQuery
impl Send for MaliputQuery
impl Sync for MaliputQuery
impl Unpin for MaliputQuery
impl UnwindSafe for MaliputQuery
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