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
column_names: Option<Vec<Cow<'a, str>>>
values: Option<Vec<Value>>
sql_error: Option<Error<'a>>
Trait Implementations
impl<'a> Clone for ExecuteSqlResponse<'a>
[src]
fn clone(&self) -> ExecuteSqlResponse<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> Debug for ExecuteSqlResponse<'a>
[src]
impl<'a> PartialEq for ExecuteSqlResponse<'a>
[src]
fn eq(&self, __arg_0: &ExecuteSqlResponse<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ExecuteSqlResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for ExecuteSqlResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Database.executeSQL"