Struct cargo_metadata::WorkspaceMember[][src]

pub struct WorkspaceMember {
    pub raw: String,
}

A workspace member. This is basically identical to cargo::core::package_id::PackageId, except that this does not use Arc internally.

Fields

The raw package id as given by cargo

Methods

impl WorkspaceMember
[src]

The name of the crate

The version of the crate

The path to the crate in url format

Trait Implementations

impl Clone for WorkspaceMember
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for WorkspaceMember
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations