pub struct ResolvedRoute {
pub route: Route,
pub provider: String,
pub feature: String,
pub operation: String,
pub available_operations: Vec<String>,
}
Expand description
A resolved route with validated components
Fields§
§route: Route
§provider: String
§feature: String
§operation: String
§available_operations: Vec<String>
Trait Implementations§
Source§impl Clone for ResolvedRoute
impl Clone for ResolvedRoute
Source§fn clone(&self) -> ResolvedRoute
fn clone(&self) -> ResolvedRoute
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 moreAuto Trait Implementations§
impl Freeze for ResolvedRoute
impl RefUnwindSafe for ResolvedRoute
impl Send for ResolvedRoute
impl Sync for ResolvedRoute
impl Unpin for ResolvedRoute
impl UnwindSafe for ResolvedRoute
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