miniblink 0.4.0

Rust bindings to mininlink49
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// The js query parameters.
pub struct JsQueryParameters {
    /// The custom message.
    pub custom_message: i32,
    /// The request.
    pub request: String,
}

/// The js query result.
pub struct JsQueryResult {
    /// The custom message.
    pub custom_message: i32,
    /// The response.
    pub response: String,
}