pub enum Path<'a> {
    Root(&'static str),
    Select(&'a Path<'a>, PathElement),
}
Expand description

Used to track a location within a protobuf message. The owned version is PathBuf.

Variants

Root(&'static str)

Refers to the root message.

Select(&'a Path<'a>, PathElement)

Refers to an optional field with the given name within the message referred to by the given parent path.

Implementations

Returns a new Path that references an optional field with the given name within the protobuf message referred to by the current path, or likewise for the key within a YAML map.

Returns a new Path that references an optional field with the given name within the protobuf message referred to by the current path, or likewise for the key within a YAML map.

Returns a new Path that references an element of a repeated field with the given name within the message referred to by the current path.

Returns a new Path that references a particular variant of a OneOf field with the given name within the message referred to by the current path.

Returns a new Path that references a YAML array element.

Creates an owned version of this Path.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.