Struct chromiumoxide_cdp::cdp::js_protocol::runtime::StackTraceBuilder[][src]

pub struct StackTraceBuilder { /* fields omitted */ }

Implementations

impl StackTraceBuilder[src]

pub fn description(self, description: impl Into<String>) -> Self[src]

pub fn call_frame(self, call_frame: impl Into<CallFrame>) -> Self[src]

pub fn call_frames<I, S>(self, call_frames: I) -> Self where
    I: IntoIterator<Item = S>,
    S: Into<CallFrame>, 
[src]

pub fn parent(self, parent: impl Into<StackTrace>) -> Self[src]

pub fn parent_id(self, parent_id: impl Into<StackTraceId>) -> Self[src]

pub fn build(self) -> Result<StackTrace, String>[src]

Trait Implementations

impl Clone for StackTraceBuilder[src]

impl Default for StackTraceBuilder[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> From<T> for T[src]

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

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.