pub struct RuntimeAdapterEvent {
pub kind: RuntimeAdapterEventKind,
pub phase: RuntimeApplyAdapterPhase,
pub owner: Option<Path>,
pub apply_target: Option<Path>,
pub callee_source_edge: Option<u32>,
pub arg_source_edge: Option<u32>,
pub actual: Type,
pub expected: Type,
}Fields§
§kind: RuntimeAdapterEventKind§phase: RuntimeApplyAdapterPhase§owner: Option<Path>§apply_target: Option<Path>§callee_source_edge: Option<u32>§arg_source_edge: Option<u32>§actual: Type§expected: TypeTrait Implementations§
Source§impl Clone for RuntimeAdapterEvent
impl Clone for RuntimeAdapterEvent
Source§fn clone(&self) -> RuntimeAdapterEvent
fn clone(&self) -> RuntimeAdapterEvent
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 RuntimeAdapterEvent
impl Debug for RuntimeAdapterEvent
Source§impl PartialEq for RuntimeAdapterEvent
impl PartialEq for RuntimeAdapterEvent
Source§fn eq(&self, other: &RuntimeAdapterEvent) -> bool
fn eq(&self, other: &RuntimeAdapterEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RuntimeAdapterEvent
impl StructuralPartialEq for RuntimeAdapterEvent
Auto Trait Implementations§
impl Freeze for RuntimeAdapterEvent
impl RefUnwindSafe for RuntimeAdapterEvent
impl Send for RuntimeAdapterEvent
impl Sync for RuntimeAdapterEvent
impl Unpin for RuntimeAdapterEvent
impl UnsafeUnpin for RuntimeAdapterEvent
impl UnwindSafe for RuntimeAdapterEvent
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