[][src]Struct transit_model::model::Model

pub struct Model { /* fields omitted */ }

The navitia transit model.

Methods

impl Model[src]

pub fn get_corresponding<T, U>(&self, from: &IdxSet<T>) -> IdxSet<U> where
    IdxSet<T>: GetCorresponding<U>, 
[src]

Returns the set of U indices corresponding to the from set.

pub fn get_corresponding_from_idx<T, U>(&self, from: Idx<T>) -> IdxSet<U> where
    IdxSet<T>: GetCorresponding<U>, 
[src]

Returns the set of U indices corresponding to the from index.

impl Model[src]

pub fn new(c: Collections) -> Result<Self>[src]

Constructs a model from the given Collections. Fails in case of incoherence, as invalid external references.

Examples

let _: Model = Model::new(Collections::default())?;
let mut collections = Collections::default();
// This transfer is invalid as there is no stop points in collections
collections.transfers = Collection::from(Transfer {
    from_stop_id: "invalid".into(),
    to_stop_id: "also_invalid".into(),
    min_transfer_time: None,
    real_min_transfer_time: None,
    equipment_id: None,
});
assert!(Model::new(collections).is_err());

pub fn into_collections(self) -> Collections[src]

Consumes collections,

Examples

let model: Model = Model::new(Collections::default())?;
let mut collections = model.into_collections();
 collections
   .feed_infos
   .insert("foo".to_string(), "bar".to_string());
let feeds: Vec<(_, _)> = collections.feed_infos.into_iter().collect();
assert_eq!(
   vec![("foo".to_string(), "bar".to_string())],
   feeds
);

Methods from Deref<Target = Collections>

Trait Implementations

impl Deref for Model[src]

type Target = Collections

The resulting type after dereferencing.

impl<'de> Deserialize<'de> for Model[src]

impl Serialize for Model[src]

Auto Trait Implementations

impl Send for Model

impl Sync for Model

impl Unpin for Model

impl UnwindSafe for Model

impl RefUnwindSafe for Model

Blanket Implementations

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

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

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,