Struct msql_srv::StatementMetaWriter [] [src]

#[must_use]
pub struct StatementMetaWriter<'a, W: Write + 'a> { /* fields omitted */ }

Convenience type for responding to a client PREPARE command.

This type should not be dropped without calling reply or error.

Methods

impl<'a, W: Write + 'a> StatementMetaWriter<'a, W>
[src]

[src]

Reply to the client with the given meta-information.

id is a statement identifier that the client should supply when it later wants to execute this statement. params is a set of Column descriptors for the parameters the client must provide when executing the prepared statement. columns is a second set of Column descriptors for the values that will be returned in each row then the statement is later executed.

[src]

Reply to the client's PREPARE with an error.