Struct gapi_grpc::google::devtools::clouddebugger::v2::ListBreakpointsResponse[][src]

pub struct ListBreakpointsResponse {
    pub breakpoints: Vec<Breakpoint>,
    pub next_wait_token: String,
}

Response for listing breakpoints.

Fields

breakpoints: Vec<Breakpoint>

List of breakpoints matching the request. The fields id and location are guaranteed to be set on each breakpoint. The fields: stack_frames, evaluated_expressions and variable_table are cleared on each breakpoint regardless of its status.

next_wait_token: String

A wait token that can be used in the next call to list (REST) or ListBreakpoints (RPC) to block until the list of breakpoints has changes.

Trait Implementations

impl Clone for ListBreakpointsResponse[src]

impl Debug for ListBreakpointsResponse[src]

impl Default for ListBreakpointsResponse[src]

impl Message for ListBreakpointsResponse[src]

impl PartialEq<ListBreakpointsResponse> for ListBreakpointsResponse[src]

impl StructuralPartialEq for ListBreakpointsResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for ListBreakpointsResponse

impl Send for ListBreakpointsResponse

impl Sync for ListBreakpointsResponse

impl Unpin for ListBreakpointsResponse

impl UnwindSafe for ListBreakpointsResponse

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]