Struct chromiumoxide::cdp::browser_protocol::database::ExecuteSqlParams[][src]

pub struct ExecuteSqlParams {
    pub database_id: DatabaseId,
    pub query: String,
}

Fields

database_id: DatabaseIdquery: String

Implementations

impl ExecuteSqlParams[src]

pub fn new(
    database_id: impl Into<DatabaseId>,
    query: impl Into<String>
) -> ExecuteSqlParams
[src]

impl ExecuteSqlParams[src]

impl ExecuteSqlParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for ExecuteSqlParams[src]

impl Command for ExecuteSqlParams[src]

type Response = ExecuteSqlReturns

The type of the response this request triggers on the chromium server

impl Debug for ExecuteSqlParams[src]

impl<'de> Deserialize<'de> for ExecuteSqlParams[src]

impl Method for ExecuteSqlParams[src]

impl MethodType for ExecuteSqlParams[src]

impl PartialEq<ExecuteSqlParams> for ExecuteSqlParams[src]

impl Serialize for ExecuteSqlParams[src]

impl StructuralPartialEq for ExecuteSqlParams[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,