Enum languageserver_types::FileChangeType[][src]

pub enum FileChangeType {
    Created,
    Changed,
    Deleted,
}

The file event type.

Variants

The file got created.

The file got changed.

The file got deleted.

Trait Implementations

impl Debug for FileChangeType
[src]

Formats the value using the given formatter. Read more

impl Eq for FileChangeType
[src]

impl PartialEq for FileChangeType
[src]

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

This method tests for !=.

impl Copy for FileChangeType
[src]

impl Clone for FileChangeType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for FileChangeType
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations