Enum map_model::edits::perma::PermanentEditCmd
source · pub enum PermanentEditCmd {
ChangeRoad {
r: OriginalRoad,
new: EditRoad,
old: EditRoad,
},
ChangeIntersection {
i: NodeID,
new: PermanentEditIntersection,
old: PermanentEditIntersection,
},
ChangeRouteSchedule {
gtfs_id: String,
old: Vec<Time>,
new: Vec<Time>,
},
}
Variants§
Implementations§
Trait Implementations§
source§impl Clone for PermanentEditCmd
impl Clone for PermanentEditCmd
source§fn clone(&self) -> PermanentEditCmd
fn clone(&self) -> PermanentEditCmd
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'de> Deserialize<'de> for PermanentEditCmd
impl<'de> Deserialize<'de> for PermanentEditCmd
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PermanentEditCmd
impl RefUnwindSafe for PermanentEditCmd
impl Send for PermanentEditCmd
impl Sync for PermanentEditCmd
impl Unpin for PermanentEditCmd
impl UnwindSafe for PermanentEditCmd
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