[][src]Struct google_clouddebugger2::Debuggee

pub struct Debuggee {
    pub status: Option<StatusMessage>,
    pub description: Option<String>,
    pub is_disabled: Option<bool>,
    pub labels: Option<HashMap<String, String>>,
    pub uniquifier: Option<String>,
    pub project: Option<String>,
    pub source_contexts: Option<Vec<SourceContext>>,
    pub ext_source_contexts: Option<Vec<ExtendedSourceContext>>,
    pub agent_version: Option<String>,
    pub is_inactive: Option<bool>,
    pub id: Option<String>,
}

Represents the debugged application. The application may include one or more replicated processes executing the same code. Each of these processes is attached with a debugger agent, carrying out the debugging commands. Agents attached to the same debuggee identify themselves as such by using exactly the same Debuggee message value when registering.

This type is not used in any activity, and only used as part of another schema.

Fields

status: Option<StatusMessage>

Human readable message to be displayed to the user about this debuggee. Absence of this field indicates no status. The message can be either informational or an error status.

description: Option<String>

Human readable description of the debuggee. Including a human-readable project name, environment name and version information is recommended.

is_disabled: Option<bool>

If set to true, indicates that the agent should disable itself and detach from the debuggee.

labels: Option<HashMap<String, String>>

A set of custom debuggee properties, populated by the agent, to be displayed to the user.

uniquifier: Option<String>

Uniquifier to further distinguish the application. It is possible that different applications might have identical values in the debuggee message, thus, incorrectly identified as a single application by the Controller service. This field adds salt to further distinguish the application. Agents should consider seeding this field with value that identifies the code, binary, configuration and environment.

project: Option<String>

Project the debuggee is associated with. Use project number or id when registering a Google Cloud Platform project.

source_contexts: Option<Vec<SourceContext>>

References to the locations and revisions of the source code used in the deployed application.

ext_source_contexts: Option<Vec<ExtendedSourceContext>>

References to the locations and revisions of the source code used in the deployed application.

agent_version: Option<String>

Version ID of the agent. Schema: domain/language-platform/vmajor.minor (for example google.com/java-gcp/v1.1).

is_inactive: Option<bool>

If set to true, indicates that Controller service does not detect any activity from the debuggee agents and the application is possibly stopped.

id: Option<String>

Unique identifier for the debuggee generated by the controller service.

Trait Implementations

impl Part for Debuggee[src]

impl Clone for Debuggee[src]

impl Default for Debuggee[src]

impl Debug for Debuggee[src]

impl Serialize for Debuggee[src]

impl<'de> Deserialize<'de> for Debuggee[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]