[][src]Struct google_cloudprofiler2::Profile

pub struct Profile {
    pub profile_bytes: Option<String>,
    pub profile_type: Option<String>,
    pub name: Option<String>,
    pub deployment: Option<Deployment>,
    pub duration: Option<String>,
    pub labels: Option<HashMap<String, String>>,
}

Profile resource.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

profile_bytes: Option<String>

Input only. Profile bytes, as a gzip compressed serialized proto, the format is https://github.com/google/pprof/blob/master/proto/profile.proto.

profile_type: Option<String>

Type of profile. For offline mode, this must be specified when creating the profile. For online mode it is assigned and returned by the server.

name: Option<String>

Output only. Opaque, server-assigned, unique ID for this profile.

deployment: Option<Deployment>

Deployment this profile corresponds to.

duration: Option<String>

Duration of the profiling session. Input (for the offline mode) or output (for the online mode). The field represents requested profiling duration. It may slightly differ from the effective profiling duration, which is recorded in the profile data, in case the profiling can't be stopped immediately (e.g. in case stopping the profiling is handled asynchronously).

labels: Option<HashMap<String, String>>

Input only. Labels associated to this specific profile. These labels will get merged with the deployment labels for the final data set. See documentation on deployment labels for validation rules and limits.

Trait Implementations

impl ResponseResult for Profile[src]

impl RequestValue for Profile[src]

impl Default for Profile[src]

impl Clone for Profile[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Profile[src]

impl Serialize for Profile[src]

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

Auto Trait Implementations

impl Send for Profile

impl Unpin for Profile

impl Sync for Profile

impl UnwindSafe for Profile

impl RefUnwindSafe for Profile

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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

impl<T> Borrow<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

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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