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

pub struct ListActiveBreakpointsResponse {
    pub breakpoints: Vec<Breakpoint>,
    pub next_wait_token: String,
    pub wait_expired: bool,
}

Response for listing active breakpoints.

Fields

breakpoints: Vec<Breakpoint>

List of all active breakpoints. The fields id and location are guaranteed to be set on each breakpoint.

next_wait_token: String

A token that can be used in the next method call to block until the list of breakpoints changes.

wait_expired: bool

If set to true, indicates that there is no change to the list of active breakpoints and the server-selected timeout has expired. The breakpoints field would be empty and should be ignored.

Trait Implementations

impl Clone for ListActiveBreakpointsResponse[src]

impl Debug for ListActiveBreakpointsResponse[src]

impl Default for ListActiveBreakpointsResponse[src]

impl Message for ListActiveBreakpointsResponse[src]

impl PartialEq<ListActiveBreakpointsResponse> for ListActiveBreakpointsResponse[src]

impl StructuralPartialEq for ListActiveBreakpointsResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for ListActiveBreakpointsResponse

impl Send for ListActiveBreakpointsResponse

impl Sync for ListActiveBreakpointsResponse

impl Unpin for ListActiveBreakpointsResponse

impl UnwindSafe for ListActiveBreakpointsResponse

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]