Docs.rs
assemble-std-0.2.0
assemble-std 0.2.0
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
joshradin
Dependencies
assemble-core ^0.2.0
normal
colored ^2.0.0
normal
dirs ^4.0.0
normal
log ^0.4.17
normal
once_cell ^1.13.1
normal
reqwest ^0.11.11
normal
serde ^1.0.143
normal
tempfile ^3.3.0
normal
thiserror ^1.0.31
normal
url ^2.2.2
normal
assemble-build ^0.2.0
build
Versions
100%
of the crate is documented
Platform
i686-pc-windows-msvc
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
assemble_
std
0.2.0
Spec
Required Methods
accept
Implementations on Foreign Types
&S
&str
Arc<S>
Box<S>
Pattern
Implementors
In assemble_
std::
utilities
assemble_std
::
utilities
Trait
Spec
Copy item path
Source
pub trait Spec<T>
where T: ?
Sized
,
{ // Required method fn
accept
(&self, value:
&T
) ->
bool
; }
Required Methods
§
Source
fn
accept
(&self, value:
&T
) ->
bool
Implementations on Foreign Types
§
Source
§
impl
Spec
<
Path
> for &
str
Source
§
fn
accept
(&self, value: &
Path
) ->
bool
Source
§
impl
Spec
<
Path
> for
Pattern
Source
§
fn
accept
(&self, value: &
Path
) ->
bool
Source
§
impl<T, S>
Spec
<T> for
&S
where S:
Spec
<T>, T: ?
Sized
,
Source
§
fn
accept
(&self, value:
&T
) ->
bool
Source
§
impl<T, S>
Spec
<T> for
Box
<S>
where S:
Spec
<T> + ?
Sized
, T: ?
Sized
,
Source
§
fn
accept
(&self, value:
&T
) ->
bool
Source
§
impl<T, S>
Spec
<T> for
Arc
<S>
where S:
Spec
<T> + ?
Sized
, T: ?
Sized
,
Source
§
fn
accept
(&self, value:
&T
) ->
bool
Implementors
§
Source
§
impl<F, T>
Spec
<T> for
Callback
<F, T>
where F:
Fn
(
&T
) ->
bool
, T: ?
Sized
,
Source
§
impl<T>
Spec
<T> for
False
<T>
where T: ?
Sized
,
Source
§
impl<T>
Spec
<T> for
True
<T>
where T: ?
Sized
,
Source
§
impl<T, F1, F2>
Spec
<T> for
AndSpec
<T, F1, F2>
where F1:
Spec
<T>, F2:
Spec
<T>, T: ?
Sized
,
Source
§
impl<T, F1, F2>
Spec
<T> for
OrSpec
<T, F1, F2>
where F1:
Spec
<T>, F2:
Spec
<T>, T: ?
Sized
,
Source
§
impl<T, F>
Spec
<T> for
Invert
<T, F>
where F:
Spec
<T>, T: ?
Sized
,