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