pub struct RoutingCandidate {
pub name: String,
pub alias: Option<String>,
pub level: u8,
pub enabled: bool,
pub active: bool,
pub upstreams: usize,
}Fields§
§name: String§alias: Option<String>§level: u8§enabled: bool§active: bool§upstreams: usizeTrait Implementations§
Source§impl Clone for RoutingCandidate
impl Clone for RoutingCandidate
Source§fn clone(&self) -> RoutingCandidate
fn clone(&self) -> RoutingCandidate
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 RoutingCandidate
impl Debug for RoutingCandidate
Auto Trait Implementations§
impl Freeze for RoutingCandidate
impl RefUnwindSafe for RoutingCandidate
impl Send for RoutingCandidate
impl Sync for RoutingCandidate
impl Unpin for RoutingCandidate
impl UnsafeUnpin for RoutingCandidate
impl UnwindSafe for RoutingCandidate
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