pub enum GetRoadOpeningsResponse {
Ok(Vec<RoadDetails>),
UnexpectedStatus(StatusCode, Vec<u8>),
}Expand description
Returns all planned road openings, including the new road name and the responsible agency. Update freq: 24 hours – whenever there are updates
Variants§
Trait Implementations§
Source§impl Clone for GetRoadOpeningsResponse
impl Clone for GetRoadOpeningsResponse
Source§fn clone(&self) -> GetRoadOpeningsResponse
fn clone(&self) -> GetRoadOpeningsResponse
Returns a duplicate 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 Debug for GetRoadOpeningsResponse
impl Debug for GetRoadOpeningsResponse
Source§impl PartialEq for GetRoadOpeningsResponse
impl PartialEq for GetRoadOpeningsResponse
impl StructuralPartialEq for GetRoadOpeningsResponse
Auto Trait Implementations§
impl Freeze for GetRoadOpeningsResponse
impl RefUnwindSafe for GetRoadOpeningsResponse
impl Send for GetRoadOpeningsResponse
impl Sync for GetRoadOpeningsResponse
impl Unpin for GetRoadOpeningsResponse
impl UnsafeUnpin for GetRoadOpeningsResponse
impl UnwindSafe for GetRoadOpeningsResponse
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