Docs.rs
zed-0.1.17
zed 0.1.17
Permalink
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
brenogonzaga
Dependencies
paste ^1.0
normal
serde ^1.0
normal
serde_json ^1.0
normal
criterion ^0.6
dev
Versions
65.67%
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
zed
0.1.17
Cache
Required Methods
get
set
Implementors
In zed::
capsule
zed
::
capsule
Trait
Cache
Copy item path
Source
pub trait Cache<T> { // Required methods fn
get
(&self) ->
Option
<T>;
fn
set
(&mut self, value: T); }
Required Methods
§
Source
fn
get
(&self) ->
Option
<T>
Source
fn
set
(&mut self, value: T)
Implementors
§
Source
§
impl<T:
Clone
>
Cache
<T> for
SimpleCache
<T>