alef 0.25.37

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub(super) fn render_streaming_chunk_decode(
    item_type: &str,
    item_type_from_json: &str,
    is_first_class: bool,
    indent: &str,
) -> String {
    crate::backends::swift::template_env::render(
        "swift_streaming_chunk_decode.swift.jinja",
        minijinja::context! {
            item_type => item_type,
            item_type_from_json => item_type_from_json,
            is_first_class => is_first_class,
            indent => indent,
        },
    )
}