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

pub struct Model { /* fields omitted */ }

The navitia transit model.

Implementations

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
// but objects not referenced are removed from the model
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_ok());

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>

pub fn calculate_validity_period(&self) -> Result<(Date, Date)>[src]

Calculate the validity period in the 'Model'. The calculation is based on the minimum start date and the maximum end date of all the datasets. If no dataset is found, an error is returned.

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 RefUnwindSafe for Model

impl Send for Model

impl Sync for Model

impl Unpin for Model

impl UnwindSafe for Model

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,