Struct chrome_remote_interface_model::debugger::GetPossibleBreakpointsCommand[][src]

pub struct GetPossibleBreakpointsCommand { /* fields omitted */ }
This is supported on crate features Debugger and Runtime only.

Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.

Implementations

impl GetPossibleBreakpointsCommand[src]

pub fn new(
    start: Location,
    end: Option<Location>,
    restrict_to_function: Option<bool>
) -> Self
[src]

pub fn start(&self) -> &Location[src]

Start of range to search possible breakpoint locations in.

pub fn end(&self) -> Option<&Location>[src]

End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.

pub fn restrict_to_function(&self) -> Option<&bool>[src]

Only consider locations which are in the same (non-nested) function as start.

Trait Implementations

impl Clone for GetPossibleBreakpointsCommand[src]

impl Command for GetPossibleBreakpointsCommand[src]

type Return = GetPossibleBreakpointsReturn

Return type.

impl Debug for GetPossibleBreakpointsCommand[src]

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

impl Serialize for GetPossibleBreakpointsCommand[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> 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.