1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//! Backends that generate target-language source files from an [`AbiContract`].
//!
//! Each backend is split into three parts:
//!
//! - A **lowerer** that walks the [`AbiContract`] and maps each [`AbiCall`],
//! [`AbiRecord`], [`AbiEnum`], and [`AbiStream`] into language-specific plan
//! structs. These plan structs carry everything a template needs to render:
//! type names, method signatures, wire read/write expressions, native
//! function declarations.
//!
//! - An **emitter** that feeds those plan structs into Askama templates and
//! concatenates the output into a single source file.
//!
//! - A set of **Askama templates** (`.txt` files under `templates/`) that
//! contain the actual target-language syntax with template placeholders.
//!
//! All backends implement the [`Renderer`] trait.
use HashMap;
use crate;
pub type TypeMappings = ;
/// Shared interface for all target-language backends.
///
/// Receives both the semantic [`FfiContract`] for type definitions and naming,
/// and the resolved [`AbiContract`] for wire ops and parameter strategies.