pub struct ServiceRoutingExplanation {
pub active_station: Option<String>,
pub mode: &'static str,
pub eligible_stations: Vec<RoutingCandidate>,
pub fallback_station: Option<RoutingCandidate>,
}Fields§
§active_station: Option<String>§mode: &'static str§eligible_stations: Vec<RoutingCandidate>§fallback_station: Option<RoutingCandidate>Trait Implementations§
Source§impl Clone for ServiceRoutingExplanation
impl Clone for ServiceRoutingExplanation
Source§fn clone(&self) -> ServiceRoutingExplanation
fn clone(&self) -> ServiceRoutingExplanation
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 Debug for ServiceRoutingExplanation
impl Debug for ServiceRoutingExplanation
Auto Trait Implementations§
impl Freeze for ServiceRoutingExplanation
impl RefUnwindSafe for ServiceRoutingExplanation
impl Send for ServiceRoutingExplanation
impl Sync for ServiceRoutingExplanation
impl Unpin for ServiceRoutingExplanation
impl UnsafeUnpin for ServiceRoutingExplanation
impl UnwindSafe for ServiceRoutingExplanation
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