opendrive 0.1.0+1.7.0

OpenDRIVE parser and writer for Rust
Documentation
1
2
3
4
5
6
7
8
9
use crate::lane::border::Border;
use crate::lane::width::Width;

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "fuzzing", derive(arbitrary::Arbitrary))]
pub enum LaneChoice {
    Border(Border),
    Width(Width),
}