Struct gapi_grpc::google::devtools::clouddebugger::v2::debugger2_client::Debugger2Client[][src]

pub struct Debugger2Client<T> { /* fields omitted */ }

The Debugger service provides the API that allows users to collect run-time information from a running application, without stopping or slowing it down and without modifying its state. An application may include one or more replicated processes performing the same work.

A debugged application is represented using the Debuggee concept. The Debugger service provides a way to query for available debuggees, but does not provide a way to create one. A debuggee is created using the Controller service, usually by running a debugger agent with the application.

The Debugger service enables the client to set one or more Breakpoints on a Debuggee and collect the results of the set Breakpoints.

Implementations

impl Debugger2Client<Channel>[src]

pub async fn connect<D>(dst: D) -> Result<Self, Error> where
    D: TryInto<Endpoint>,
    D::Error: Into<StdError>, 
[src]

Attempt to create a new client by connecting to a given endpoint.

impl<T> Debugger2Client<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn set_breakpoint(
    &mut self,
    request: impl IntoRequest<SetBreakpointRequest>
) -> Result<Response<SetBreakpointResponse>, Status>
[src]

Sets the breakpoint to the debuggee.

pub async fn get_breakpoint(
    &mut self,
    request: impl IntoRequest<GetBreakpointRequest>
) -> Result<Response<GetBreakpointResponse>, Status>
[src]

Gets breakpoint information.

pub async fn delete_breakpoint(
    &mut self,
    request: impl IntoRequest<DeleteBreakpointRequest>
) -> Result<Response<()>, Status>
[src]

Deletes the breakpoint from the debuggee.

pub async fn list_breakpoints(
    &mut self,
    request: impl IntoRequest<ListBreakpointsRequest>
) -> Result<Response<ListBreakpointsResponse>, Status>
[src]

Lists all breakpoints for the debuggee.

pub async fn list_debuggees(
    &mut self,
    request: impl IntoRequest<ListDebuggeesRequest>
) -> Result<Response<ListDebuggeesResponse>, Status>
[src]

Lists all the debuggees that the user has access to.

Trait Implementations

impl<T: Clone> Clone for Debugger2Client<T>[src]

impl<T> Debug for Debugger2Client<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Debugger2Client<T>

impl<T> Send for Debugger2Client<T> where
    T: Send

impl<T> Sync for Debugger2Client<T> where
    T: Sync

impl<T> Unpin for Debugger2Client<T> where
    T: Unpin

impl<T> !UnwindSafe for Debugger2Client<T>

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]