Docs.rs
vue-compiler-core-0.1.0
vue-compiler-core 0.1.0
Docs.rs crate page
MIT
Links
crates.io
Source
Owners
HerringtonDarkholme
Dependencies
bitflags ^1.3
normal
json ^0.12.4
normal
rslint_parser ^0.3.0
normal
rustc-hash ^1.1.0
normal
serde ^1.0
normal
optional
smallvec ^1.7.0
normal
insta ^1.8.0
dev
Versions
19.14%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
vue_
compiler_
core
0.1.0
Prop
Pattern
Required Methods
matches
Implementations on Foreign Types
&str
[&'static str; N]
Implementors
In vue_
compiler_
core::
util
vue_compiler_core
::
util
Trait
PropPattern
Copy item path
Source
pub trait PropPattern { // Required method fn
matches
(&self, name: &
str
) ->
bool
; }
Required Methods
§
Source
fn
matches
(&self, name: &
str
) ->
bool
Implementations on Foreign Types
§
Source
§
impl
PropPattern
for &
str
Source
§
fn
matches
(&self, name: &
str
) ->
bool
Source
§
impl<const N:
usize
>
PropPattern
for [&'static
str
;
N
]
Source
§
fn
matches
(&self, name: &
str
) ->
bool
Implementors
§
Source
§
impl<F>
PropPattern
for F
where F:
Fn
(&
str
) ->
bool
,