[][src]Struct zekin_data_structure::way::Way

pub struct Way { /* fields omitted */ }

Implementations

impl Way[src]

pub fn id(&self) -> &i32[src]

返回交通方式的唯一id

pub fn way_type(&self) -> &Type[src]

返回交通方式的种类

pub fn start_city(&self) -> &Rc<City>[src]

返回交通方式的起始城市

pub fn end_city(&self) -> &Rc<City>[src]

返回交通方式的终点城市

pub fn cost_time(&self) -> &i32[src]

返回交通方式花费的时间

pub fn start_time(&self) -> &i32[src]

返回交通方式花费的开始时间

取值为0-23

impl Way[src]

pub fn new(
    id: i32,
    way_type: Type,
    start_city: Rc<City>,
    end_city: Rc<City>,
    cost_time: i32,
    start_time: i32
) -> Way
[src]

Way 的构造函数,创建一个新Way

Arguments

  • id - 交通方式的唯一id
  • type - 交通方式的种类
  • start_city - 交通方式的起始城市
  • end_city - 交通方式的终点城市
  • cost_time - 交通方式花费的时间
  • start_time - 交通方式的出发时间

pub fn risk(&self) -> f64[src]

返回交通方式的风险权重系数

  • 汽车 => 2
  • 火车 => 5
  • 飞机 => 9

Trait Implementations

impl Clone for Way[src]

impl Debug for Way[src]

impl Eq for Way[src]

impl From<Way> for JsValue[src]

impl FromWasmAbi for Way[src]

type Abi = u32

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for Way[src]

type Abi = u32

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl OptionFromWasmAbi for Way[src]

impl OptionIntoWasmAbi for Way[src]

impl PartialEq<Way> for Way[src]

impl RefFromWasmAbi for Way[src]

type Abi = u32

The wasm ABI type references to Self are recovered from.

type Anchor = Ref<'static, Way>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl RefMutFromWasmAbi for Way[src]

type Abi = u32

Same as RefFromWasmAbi::Abi

type Anchor = RefMut<'static, Way>

Same as RefFromWasmAbi::Anchor

impl WasmDescribe for Way[src]

Auto Trait Implementations

impl !RefUnwindSafe for Way

impl !Send for Way

impl !Sync for Way

impl Unpin for Way

impl !UnwindSafe for Way

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.