Struct air_parser::ast::Call
source · pub struct Call<'i> {
pub triplet: Triplet<'i>,
pub args: Rc<Vec<ImmutableValue<'i>>>,
pub output: CallOutputValue<'i>,
}
Expand description
(call (peer part of a triplet: PeerPart) (function part of a triplet: FunctionPart) [arguments] output)
Fields§
§triplet: Triplet<'i>
§args: Rc<Vec<ImmutableValue<'i>>>
§output: CallOutputValue<'i>
Implementations§
source§impl<'i> Call<'i>
impl<'i> Call<'i>
pub fn new( triplet: Triplet<'i>, args: Rc<Vec<ImmutableValue<'i>>>, output: CallOutputValue<'i>, ) -> Self
Trait Implementations§
source§impl<'i> PartialEq for Call<'i>
impl<'i> PartialEq for Call<'i>
source§impl PeerIDErrorLogable for Call<'_>
impl PeerIDErrorLogable for Call<'_>
fn log_errors_with_peer_id(&self) -> bool
impl<'i> StructuralPartialEq for Call<'i>
Auto Trait Implementations§
impl<'i> Freeze for Call<'i>
impl<'i> RefUnwindSafe for Call<'i>
impl<'i> !Send for Call<'i>
impl<'i> !Sync for Call<'i>
impl<'i> Unpin for Call<'i>
impl<'i> UnwindSafe for Call<'i>
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