Struct cdp::database::ExecuteSqlResponse [] [src]

pub struct ExecuteSqlResponse<'a> {
    pub column_names: Option<Vec<Cow<'a, str>>>,
    pub values: Option<Vec<Value>>,
    pub sql_error: Option<Error<'a>>,
}

[Experimental]

Command Database.executeSQL

Domain Module: cdp::database
Command Struct: cdp::database::ExecuteSqlCommand
Response Struct: cdp::database::ExecuteSqlResponse

Fields

Trait Implementations

impl<'a> Clone for ExecuteSqlResponse<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for ExecuteSqlResponse<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for ExecuteSqlResponse<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> CdpCommand for ExecuteSqlResponse<'a>
[src]

COMMAND_NAME: &'static str = "Database.executeSQL"

impl<'a, 'b> HasCdpCommand<'a> for ExecuteSqlResponse<'b>
[src]