Struct chromiumoxide::cdp::browser_protocol::network::GetCertificateParams[][src]

pub struct GetCertificateParams {
    pub origin: String,
}

Returns the DER-encoded certificate. getCertificate

Fields

origin: String

Origin to get certificate for.

Implementations

impl GetCertificateParams[src]

pub fn new(origin: impl Into<String>) -> GetCertificateParams[src]

impl GetCertificateParams[src]

impl GetCertificateParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for GetCertificateParams[src]

impl Command for GetCertificateParams[src]

type Response = GetCertificateReturns

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

impl Debug for GetCertificateParams[src]

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

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

impl Method for GetCertificateParams[src]

impl MethodType for GetCertificateParams[src]

impl PartialEq<GetCertificateParams> for GetCertificateParams[src]

impl Serialize for GetCertificateParams[src]

impl StructuralPartialEq for GetCertificateParams[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>,