#[repr(C)]pub struct ConstLaneSRangeRef<'a> {
pub lane_s_range: &'a LaneSRange,
}
Expand description
Shared struct for LaneSRange
constant reference.
Interestingly this was done at maliput::api module but
couldn’t reference to that so it was necessary to
redefine it here.
Fields§
§lane_s_range: &'a LaneSRange
Trait Implementations§
Source§impl<'a> ExternType for ConstLaneSRangeRef<'a>
impl<'a> ExternType for ConstLaneSRangeRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for ConstLaneSRangeRef<'a>
impl<'a> RefUnwindSafe for ConstLaneSRangeRef<'a>
impl<'a> !Send for ConstLaneSRangeRef<'a>
impl<'a> !Sync for ConstLaneSRangeRef<'a>
impl<'a> Unpin for ConstLaneSRangeRef<'a>
impl<'a> UnwindSafe for ConstLaneSRangeRef<'a>
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