Struct google_clouddebugger2::CloudWorkspaceId[][src]

pub struct CloudWorkspaceId {
    pub repo_id: Option<RepoId>,
    pub name: Option<String>,
}

A CloudWorkspaceId is a unique identifier for a cloud workspace. A cloud workspace is a place associated with a repo where modified files can be stored before they are committed.

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

Fields

The ID of the repo containing the workspace.

The unique name of the workspace within the repo. This is the name chosen by the client in the Source API's CreateWorkspace method.

Trait Implementations

impl Default for CloudWorkspaceId
[src]

Returns the "default value" for a type. Read more

impl Clone for CloudWorkspaceId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CloudWorkspaceId
[src]

Formats the value using the given formatter. Read more

impl Part for CloudWorkspaceId
[src]

Auto Trait Implementations