Struct debris_mir::mir_nodes::FunctionCall
source · pub struct FunctionCall {
pub span: Span,
pub value_span: Span,
pub allow_comptime: bool,
pub function: MirObjectId,
pub parameters: Vec<MirObjectId>,
pub self_obj: Option<MirObjectId>,
pub return_value: MirObjectId,
}
Fields§
§span: Span
§value_span: Span
§allow_comptime: bool
§function: MirObjectId
§parameters: Vec<MirObjectId>
§self_obj: Option<MirObjectId>
§return_value: MirObjectId
Trait Implementations§
source§impl Debug for FunctionCall
impl Debug for FunctionCall
source§impl From<FunctionCall> for MirNode
impl From<FunctionCall> for MirNode
source§fn from(value: FunctionCall) -> Self
fn from(value: FunctionCall) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for FunctionCall
impl Send for FunctionCall
impl Sync for FunctionCall
impl Unpin for FunctionCall
impl UnwindSafe for FunctionCall
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