MCPcopy Create free account

hub / github.com/anixe/doku / functions

Functions354 in github.com/anixe/doku

Methodserialize_char
(self, v: char)
doku/src/objects/value/serializer.rs:69
Methodserialize_element
( &mut self, value: &T, )
doku/src/objects/value/serializer.rs:213
Methodserialize_f32
(self, v: f32)
doku/src/objects/value/serializer.rs:61
Methodserialize_f64
(self, v: f64)
doku/src/objects/value/serializer.rs:65
Methodserialize_i16
(self, v: i16)
doku/src/objects/value/serializer.rs:33
Methodserialize_i32
(self, v: i32)
doku/src/objects/value/serializer.rs:37
Methodserialize_i64
(self, v: i64)
doku/src/objects/value/serializer.rs:41
Methodserialize_i8
(self, v: i8)
doku/src/objects/value/serializer.rs:29
Methodserialize_key
(&mut self, key: &T)
doku/src/objects/value/serializer.rs:326
Methodserialize_map
( self, _len: Option<usize>, )
doku/src/objects/value/serializer.rs:175
Methodserialize_newtype_struct
( self, _name: &'static str, value: &T, )
doku/src/objects/value/serializer.rs:116
Methodserialize_newtype_variant
( self, _name: &'static str, _variant_index: u32, _variant: &'static str,
doku/src/objects/value/serializer.rs:127
Methodserialize_seq
( self, _len: Option<usize>, )
doku/src/objects/value/serializer.rs:141
Methodserialize_some
( self, value: &T, )
doku/src/objects/value/serializer.rs:85
Methodserialize_str
(self, v: &str)
doku/src/objects/value/serializer.rs:73
Methodserialize_struct_variant
( self, _name: &'static str, _variant_index: u32, _variant: &'static str,
doku/src/objects/value/serializer.rs:190
Methodserialize_tuple
( self, _len: usize, )
doku/src/objects/value/serializer.rs:148
Methodserialize_tuple_struct
( self, _name: &'static str, _len: usize, )
doku/src/objects/value/serializer.rs:155
Methodserialize_tuple_variant
( self, _name: &'static str, _variant_index: u32, _variant: &'static str,
doku/src/objects/value/serializer.rs:164
Methodserialize_u16
(self, v: u16)
doku/src/objects/value/serializer.rs:49
Methodserialize_u32
(self, v: u32)
doku/src/objects/value/serializer.rs:53
Methodserialize_u64
(self, v: u64)
doku/src/objects/value/serializer.rs:57
Methodserialize_u8
(self, v: u8)
doku/src/objects/value/serializer.rs:45
Methodserialize_unit
(self)
doku/src/objects/value/serializer.rs:95
Methodserialize_unit_struct
( self, _name: &'static str, )
doku/src/objects/value/serializer.rs:99
Methodserialize_unit_variant
( self, _name: &'static str, _variant_index: u32, _variant: &'static str,
doku/src/objects/value/serializer.rs:106
Methodserialize_value
( &mut self, value: &T, )
doku/src/objects/value/serializer.rs:335
Functiontarget
(optional: bool)
doku/src/printers/toml/print_optional.rs:47
Functiontarget
(array_size: bool)
doku/src/printers/toml/print_array/comment.rs:36
Functiontarget
(optional: bool)
doku/src/printers/json/print_optional.rs:43
Functiontarget
(array_size: bool)
doku/src/printers/json/print_array/comment.rs:36
Functionthen_doesnt_print_hint
()
doku/src/printers/toml/print_optional.rs:66
Functionthen_doesnt_print_hint
()
doku/src/printers/toml/print_array/comment.rs:55
Functionthen_doesnt_print_hint
()
doku/src/printers/json/print_optional.rs:62
Functionthen_doesnt_print_hint
()
doku/src/printers/json/print_array/comment.rs:55
Functionthen_prints_hint
()
doku/src/printers/toml/print_optional.rs:80
Functionthen_prints_hint
()
doku/src/printers/toml/print_array/comment.rs:72
Functionthen_prints_hint
()
doku/src/printers/json/print_optional.rs:76
Functionthen_prints_hint
()
doku/src/printers/json/print_array/comment.rs:72
Functionto_json
Generates a JSON documentation for specified type. # Example ``` use doku::Document; #[derive(Document)] struct Config { /// Database's host db_hos
doku/src/lib.rs:349
Functionto_json_fmt
Generates a JSON documentation for specified type using custom formatting settings. # Example ``` use doku::Document; #[derive(Document)] struct Co
doku/src/lib.rs:388
Functionto_json_fmt_val
Generates a JSON documentation for specified type using custom formatting settings, and extracting example values from given serializable object. # E
doku/src/lib.rs:482
Functionto_json_val
Generates a JSON documentation for specified type, extracting example values from given serializable object. This is useful e.g. if you've got a conf
doku/src/lib.rs:434
Functionto_toml
Generates a TOML documentation for specified type. # Example ``` use doku::Document; #[derive(Document)] struct Config { /// Database's host db_hos
doku/src/lib.rs:514
Functionto_toml_fmt
Generates a TOML documentation for specified type using custom formatting settings. # Example ``` use doku::Document; #[derive(Document)] struct Co
doku/src/lib.rs:551
Functionto_toml_fmt_val
Generates a TOML documentation for specified type using custom formatting settings, and extracting example values from given serializable object. # E
doku/src/lib.rs:641
Functionto_toml_val
Generates a TOML documentation for specified type, extracting example values from given serializable object. This is useful e.g. if you've got a conf
doku/src/lib.rs:595
Methodty
()
doku/tests/printers/struct/with_examples/mod.rs:48
Methodty
()
doku/examples/custom-impl.rs:16
Methodwith
(mut self, key: &'static str, value: &'static str)
doku/src/objects/meta.rs:33
Methodwith_formatting
A consuming variant of [`Self::set_formatting()`].
doku/src/printers/toml.rs:70
Methodwith_value
A consuming variant of [`Self::set_value()`].
doku/src/printers/toml.rs:80
Methodwith_visibility
A consuming variant of [`Self::set_visibility()`].
doku/src/printers/json.rs:61
Methodwith_visibility
A consuming variant of [`Self::set_visibility()`].
doku/src/printers/toml.rs:60
← previous301–354 of 354, ranked by callers