Docs.rs
nxtnote-configfile-format-0.1.1-alpha
nxtnote-configfile-format 0.1.1-alpha
Permalink
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
Bazooo
Dependencies
diesel ^1.4.7
normal
itertools ^0.10.1
normal
libsqlite3-sys ^0
normal
Versions
21.05%
of the crate is documented
Platform
i686-unknown-linux-gnu
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
NxtnoteConfigFile
nxtnote_
configfile_
format
0.1.1-alpha
Nxtnote
Config
File
Aliased Type
Trait Implementations
SettingCrud
In crate nxtnote_
configfile_
format
nxtnote_configfile_format
Type Alias
Nxtnote
Config
File
Copy item path
Source
pub type NxtnoteConfigFile =
SqliteConnection
;
Aliased Type
§
pub struct NxtnoteConfigFile {
/* private fields */
}
Trait Implementations
§
Source
§
impl
SettingCrud
for
NxtnoteConfigFile
Source
§
fn
retrieve_namespaces
(&self) ->
Vec
<
String
>
Source
§
fn
retrieve_all_settings
(&self) ->
NamespaceGroupedSettings
Source
§
fn
retrieve_namespace_settings
( &self, namespace:
String
, ) ->
CategoryGroupedSettings
Source
§
fn
retrieve_category_settings
( &self, namespace:
String
, category:
String
, ) ->
NamedSettings
Source
§
fn
retrieve_setting
( &self, namespace:
String
, category:
String
, name:
String
, ) ->
Vec
<
u8
>
ⓘ
Source
§
fn
upsert_setting
(&self, updated_setting:
Setting
, should_update:
bool
)
Source
§
fn
upsert_multiple_settings
( &self, next_settings:
Vec
<
Setting
>, should_update:
bool
, )
Source
§
fn
delete_setting
(&self, namespace:
String
, category:
String
, name:
String
)