#[repr(transparent)]
pub struct GuidanceManeuverKind(pub i32);

Tuple Fields§

§0: i32

Implementations§

§

impl GuidanceManeuverKind

pub const None: Self = _

pub const GoStraight: Self = _

pub const UTurnRight: Self = _

pub const UTurnLeft: Self = _

pub const TurnKeepRight: Self = _

pub const TurnLightRight: Self = _

pub const TurnRight: Self = _

pub const TurnHardRight: Self = _

pub const KeepMiddle: Self = _

pub const TurnKeepLeft: Self = _

pub const TurnLightLeft: Self = _

pub const TurnLeft: Self = _

pub const TurnHardLeft: Self = _

pub const FreewayEnterRight: Self = _

pub const FreewayEnterLeft: Self = _

pub const FreewayLeaveRight: Self = _

pub const FreewayLeaveLeft: Self = _

pub const FreewayKeepRight: Self = _

pub const FreewayKeepLeft: Self = _

pub const TrafficCircleRight1: Self = _

pub const TrafficCircleRight2: Self = _

pub const TrafficCircleRight3: Self = _

pub const TrafficCircleRight4: Self = _

pub const TrafficCircleRight5: Self = _

pub const TrafficCircleRight6: Self = _

pub const TrafficCircleRight7: Self = _

pub const TrafficCircleRight8: Self = _

pub const TrafficCircleRight9: Self = _

pub const TrafficCircleRight10: Self = _

pub const TrafficCircleRight11: Self = _

pub const TrafficCircleRight12: Self = _

pub const TrafficCircleLeft1: Self = _

pub const TrafficCircleLeft2: Self = _

pub const TrafficCircleLeft3: Self = _

pub const TrafficCircleLeft4: Self = _

pub const TrafficCircleLeft5: Self = _

pub const TrafficCircleLeft6: Self = _

pub const TrafficCircleLeft7: Self = _

pub const TrafficCircleLeft8: Self = _

pub const TrafficCircleLeft9: Self = _

pub const TrafficCircleLeft10: Self = _

pub const TrafficCircleLeft11: Self = _

pub const TrafficCircleLeft12: Self = _

pub const Start: Self = _

pub const End: Self = _

pub const TakeFerry: Self = _

pub const PassTransitStation: Self = _

pub const LeaveTransitStation: Self = _

Trait Implementations§

§

impl Clone for GuidanceManeuverKind

§

fn clone(&self) -> GuidanceManeuverKind

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for GuidanceManeuverKind

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl Default for GuidanceManeuverKind

§

fn default() -> GuidanceManeuverKind

Returns the “default value” for a type. Read more
§

impl PartialEq for GuidanceManeuverKind

§

fn eq(&self, other: &GuidanceManeuverKind) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Copy for GuidanceManeuverKind

§

impl Eq for GuidanceManeuverKind

§

impl StructuralPartialEq for GuidanceManeuverKind

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.