Docs.rs
typebool-0.1.0
typebool 0.1.0
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
nvzqz
Dependencies
Versions
100%
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
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
typebool
0.1.0
Not
Required Associated Types
Output
Implementors
In typebool::
ops
typebool
::
ops
Trait
Not
Copy item path
Source
pub trait Not { type
Output
; }
Expand description
The negation of a
Bool
.
Required Associated Types
§
Source
type
Output
The result of this operation.
Implementors
§
Source
§
impl
Not
for
False
Source
§
type
Output
=
True
Source
§
impl
Not
for
True
Source
§
type
Output
=
False
Source
§
impl<A>
Not
for
Not
<A>
Source
§
type
Output
= A
Source
§
impl<A, B>
Not
for
And
<A, B>
Source
§
type
Output
=
Or
<
Not
<A>,
Not
<B>>
Source
§
impl<A, B>
Not
for
Or
<A, B>
Source
§
type
Output
=
And
<
Not
<A>,
Not
<B>>