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

pub struct ListBreakpointsRequest {
    pub debuggee_id: String,
    pub include_all_users: bool,
    pub include_inactive: bool,
    pub action: Option<BreakpointActionValue>,
    pub strip_results: bool,
    pub wait_token: String,
    pub client_version: String,
}

Request to list breakpoints.

Fields

debuggee_id: String

Required. ID of the debuggee whose breakpoints to list.

include_all_users: bool

When set to true, the response includes the list of breakpoints set by any user. Otherwise, it includes only breakpoints set by the caller.

include_inactive: bool

When set to true, the response includes active and inactive breakpoints. Otherwise, it includes only active breakpoints.

action: Option<BreakpointActionValue>

When set, the response includes only breakpoints with the specified action.

strip_results: bool

This field is deprecated. The following fields are always stripped out of the result: stack_frames, evaluated_expressions and variable_table.

wait_token: String

A wait token that, if specified, blocks the call until the breakpoints list has changed, or a server selected timeout has expired. The value should be set from the last response. The error code google.rpc.Code.ABORTED (RPC) is returned on wait timeout, which should be called again with the same wait_token.

client_version: String

Required. The client version making the call. Schema: domain/type/version (e.g., google.com/intellij/v1).

Trait Implementations

impl Clone for ListBreakpointsRequest[src]

impl Debug for ListBreakpointsRequest[src]

impl Default for ListBreakpointsRequest[src]

impl Message for ListBreakpointsRequest[src]

impl PartialEq<ListBreakpointsRequest> for ListBreakpointsRequest[src]

impl StructuralPartialEq for ListBreakpointsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListBreakpointsRequest

impl Send for ListBreakpointsRequest

impl Sync for ListBreakpointsRequest

impl Unpin for ListBreakpointsRequest

impl UnwindSafe for ListBreakpointsRequest

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]