pub enum FlowOperation {
Call {
function: UUID,
},
ExternalCall {
external: StrRef,
},
IndirectCall {
target: Variable,
},
Return,
}Expand description
Call/Return operations.
Variants§
Call
Function call.
ExternalCall
Call to an imported function.
IndirectCall
Call to an unknown value.
Return
Return.
Trait Implementations§
Source§impl Clone for FlowOperation
impl Clone for FlowOperation
Source§fn clone(&self) -> FlowOperation
fn clone(&self) -> FlowOperation
Returns a duplicate of the value. Read more
1.0.0 · 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 FlowOperation
impl Debug for FlowOperation
Source§impl PartialEq for FlowOperation
impl PartialEq for FlowOperation
impl Eq for FlowOperation
impl StructuralPartialEq for FlowOperation
Auto Trait Implementations§
impl Freeze for FlowOperation
impl RefUnwindSafe for FlowOperation
impl Send for FlowOperation
impl Sync for FlowOperation
impl Unpin for FlowOperation
impl UnwindSafe for FlowOperation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.