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

pub struct ListActiveBreakpointsRequest {
    pub debuggee_id: String,
    pub wait_token: String,
    pub success_on_timeout: bool,
}

Request to list active breakpoints.

Fields

debuggee_id: String

Required. Identifies the debuggee.

wait_token: String

A token that, if specified, blocks the method call until the list of active breakpoints has changed, or a server-selected timeout has expired. The value should be set from the next_wait_token field in the last response. The initial value should be set to "init".

success_on_timeout: bool

If set to true (recommended), returns google.rpc.Code.OK status and sets the wait_expired response field to true when the server-selected timeout has expired.

If set to false (deprecated), returns google.rpc.Code.ABORTED status when the server-selected timeout has expired.

Trait Implementations

impl Clone for ListActiveBreakpointsRequest[src]

impl Debug for ListActiveBreakpointsRequest[src]

impl Default for ListActiveBreakpointsRequest[src]

impl Message for ListActiveBreakpointsRequest[src]

impl PartialEq<ListActiveBreakpointsRequest> for ListActiveBreakpointsRequest[src]

impl StructuralPartialEq for ListActiveBreakpointsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListActiveBreakpointsRequest

impl Send for ListActiveBreakpointsRequest

impl Sync for ListActiveBreakpointsRequest

impl Unpin for ListActiveBreakpointsRequest

impl UnwindSafe for ListActiveBreakpointsRequest

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]