#[non_exhaustive]pub struct FuncCall {
pub name: Arc<str>,
pub args: Vec<Expression>,
pub span: Span,
}Expand description
An HCL function call — used both for unevaluated calls (when the evaluator cannot reduce the call, e.g. due to unresolved arguments) and as an intermediate representation during evaluation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Arc<str>Function name (e.g. "jsonencode").
args: Vec<Expression>Argument expressions, in order.
span: SpanWhere the call appears.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FuncCall
impl<'de> Deserialize<'de> for FuncCall
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
impl StructuralPartialEq for FuncCall
Auto Trait Implementations§
impl Freeze for FuncCall
impl RefUnwindSafe for FuncCall
impl Send for FuncCall
impl Sync for FuncCall
impl Unpin for FuncCall
impl UnsafeUnpin for FuncCall
impl UnwindSafe for FuncCall
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