pub struct ExecutionRoute {
pub symbol: SymbolId,
pub name: String,
pub declaration_index: usize,
pub index: usize,
pub kind: Option<RouteKind>,
pub destination: RouteDestination,
pub has_lag: bool,
pub has_bioavailability: bool,
pub span: Span,
}Fields§
§symbol: SymbolId§name: String§declaration_index: usize§index: usize§kind: Option<RouteKind>§destination: RouteDestination§has_lag: bool§has_bioavailability: bool§span: SpanTrait Implementations§
Source§impl Clone for ExecutionRoute
impl Clone for ExecutionRoute
Source§fn clone(&self) -> ExecutionRoute
fn clone(&self) -> ExecutionRoute
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 ExecutionRoute
impl Debug for ExecutionRoute
Source§impl PartialEq for ExecutionRoute
impl PartialEq for ExecutionRoute
Source§fn eq(&self, other: &ExecutionRoute) -> bool
fn eq(&self, other: &ExecutionRoute) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecutionRoute
Auto Trait Implementations§
impl Freeze for ExecutionRoute
impl RefUnwindSafe for ExecutionRoute
impl Send for ExecutionRoute
impl Sync for ExecutionRoute
impl Unpin for ExecutionRoute
impl UnsafeUnpin for ExecutionRoute
impl UnwindSafe for ExecutionRoute
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