pub enum PositionalType {
    Mandatory(StringSyntaxShape),
    Optional(StringSyntaxShape),
}
Expand description

The type of positional arguments

Variants

Mandatory(StringSyntaxShape)

A mandatory positional argument with the expected shape of the value

Optional(StringSyntaxShape)

An optional positional argument with the expected shape of the value

Implementations

Helper to create a mandatory positional argument type

Helper to create a mandatory positional argument with an “any” type

Helper to create a mandatory positional argument with a block type

Helper to create a optional positional argument type

Helper to create a optional positional argument with an “any” type

Gets the name of the positional argument

Gets the expected type of a positional argument

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

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Prepare the PositionalType for pretty-printing

A convenience method that prints out the document without colors in 70 columns. Generally, you should use plain_string or colored_string if possible, but display() can be useful for trace lines and things like that, where you don’t have control over the terminal. Read more

Serialize this value into the given Serde serializer. Read more

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

Compare self to key and return true if they are equal.

Performs the conversion.

Performs the conversion.

Converts a value into a Spanned value

Converts a value into a Spanned value, using an unknown Span

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

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.