Skip to main content

GlobPattern

Type Alias GlobPattern 

Source
pub type GlobPattern = Union2<Pattern, RelativePattern>;
Expand description

The glob pattern. Either a string pattern or a relative pattern.

@since 3.17.0

Aliased Type§

pub enum GlobPattern {
    A(String),
    B(RelativePattern),
}

Variants§