boltffi_bindgen 0.25.0

Code generation library for BoltFFI - generates Swift, Kotlin, and TypeScript bindings
Documentation
//! Plans are the primary data structure used by the `templates` module to produce C# code. Thus,
//! they are the `ViewModel` of the `templates` `View`.
//!
//! Plans consist of `ast` (C# grammar) primitive values, and are structured around the FFI boundary
//! code being generated.
//!
//! Templates contain most of the complexity of the C# syntax, but plans and their `ast` primitives
//! exist only to expose conditional or variable syntax.
//!
//! Plans are created by the `lower` module, and consumed by the `templates` module.

mod callable;
mod callback;
mod class;
mod enumeration;
mod field;
mod identifier;
mod module;
mod record;
mod stream;

pub use callable::{
    CSharpAsyncCallPlan, CSharpCallablePlan, CSharpFunctionPlan, CSharpMethodPlan, CSharpParamKind,
    CSharpParamPlan, CSharpReceiver, CSharpReturnKind, CSharpWireWriterPlan,
};
pub use callback::{
    CSharpAsyncCallbackEntryPlan, CSharpAsyncCallbackFailurePlan, CSharpAsyncCallbackFaultPlan,
    CSharpAsyncCallbackSuccessPlan, CSharpCallbackBridgeParamPlan, CSharpCallbackDelegatePlan,
    CSharpCallbackEntryPlan, CSharpCallbackMethodPlan, CSharpCallbackParamPlan, CSharpCallbackPlan,
    CSharpCallbackProxyCallPlan, CSharpCallbackProxyPlan, CSharpCallbackResultAssignmentPlan,
    CSharpCallbackResultCatchPlan, CSharpCallbackResultDecodePlan, CSharpCallbackResultOkPlan,
    CSharpClosureInvokePlan, CSharpClosureMethodPlan, CSharpClosurePlan, CSharpResultTypePlan,
    CSharpSyncCallbackEntryPlan, CSharpSyncCallbackOutInitializerPlan, CSharpSyncCallbackProxyPlan,
    CSharpSyncCallbackSuccessPlan,
};
pub use class::{CSharpClassPlan, CSharpConstructorKind, CSharpConstructorPlan};
pub use enumeration::{CSharpEnumKind, CSharpEnumPlan, CSharpEnumVariantPlan};
pub use field::CSharpFieldPlan;
pub use identifier::CFunctionName;
pub use module::CSharpModulePlan;
pub use record::CSharpRecordPlan;
pub use stream::CSharpStreamPlan;