pub struct ExternalCallSite {
pub location: InstructionLocation,
pub target: CallTarget,
pub value_transfer: bool,
pub state_changes_before: Vec<StateChange>,
pub state_changes_after: Vec<StateChange>,
pub can_reenter: bool,
}Fields§
§location: InstructionLocation§target: CallTarget§value_transfer: bool§state_changes_before: Vec<StateChange>§state_changes_after: Vec<StateChange>§can_reenter: boolTrait Implementations§
Source§impl Clone for ExternalCallSite
impl Clone for ExternalCallSite
Source§fn clone(&self) -> ExternalCallSite
fn clone(&self) -> ExternalCallSite
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 ExternalCallSite
impl Debug for ExternalCallSite
Source§impl<'de> Deserialize<'de> for ExternalCallSite
impl<'de> Deserialize<'de> for ExternalCallSite
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExternalCallSite
impl RefUnwindSafe for ExternalCallSite
impl Send for ExternalCallSite
impl Sync for ExternalCallSite
impl Unpin for ExternalCallSite
impl UnsafeUnpin for ExternalCallSite
impl UnwindSafe for ExternalCallSite
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