Struct languageserver_types::WorkspaceFolder[][src]

pub struct WorkspaceFolder {
    pub uri: String,
    pub name: String,
}

Fields

The associated URI for this workspace folder.

The name of the workspace folder. Defaults to the uri's basename.

Trait Implementations

impl Debug for WorkspaceFolder
[src]

Formats the value using the given formatter. Read more

impl Eq for WorkspaceFolder
[src]

impl PartialEq for WorkspaceFolder
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for WorkspaceFolder
[src]

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

Auto Trait Implementations