pub struct RoutingExplainConditionalRoute {
pub route_name: String,
pub condition: RoutingExplainCondition,
pub matched: bool,
pub selected_branch: RoutingExplainConditionalBranch,
pub selected_target: Option<RoutingExplainRouteRef>,
pub then: Option<RoutingExplainRouteRef>,
pub default_route: Option<RoutingExplainRouteRef>,
}Fields§
§route_name: String§condition: RoutingExplainCondition§matched: bool§selected_branch: RoutingExplainConditionalBranch§selected_target: Option<RoutingExplainRouteRef>§then: Option<RoutingExplainRouteRef>§default_route: Option<RoutingExplainRouteRef>Trait Implementations§
Source§impl Clone for RoutingExplainConditionalRoute
impl Clone for RoutingExplainConditionalRoute
Source§fn clone(&self) -> RoutingExplainConditionalRoute
fn clone(&self) -> RoutingExplainConditionalRoute
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RoutingExplainConditionalRoute
impl<'de> Deserialize<'de> for RoutingExplainConditionalRoute
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
Source§impl PartialEq for RoutingExplainConditionalRoute
impl PartialEq for RoutingExplainConditionalRoute
Source§fn eq(&self, other: &RoutingExplainConditionalRoute) -> bool
fn eq(&self, other: &RoutingExplainConditionalRoute) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RoutingExplainConditionalRoute
impl StructuralPartialEq for RoutingExplainConditionalRoute
Auto Trait Implementations§
impl Freeze for RoutingExplainConditionalRoute
impl RefUnwindSafe for RoutingExplainConditionalRoute
impl Send for RoutingExplainConditionalRoute
impl Sync for RoutingExplainConditionalRoute
impl Unpin for RoutingExplainConditionalRoute
impl UnsafeUnpin for RoutingExplainConditionalRoute
impl UnwindSafe for RoutingExplainConditionalRoute
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.