Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/PacktPublishing/The-Complete-Rust-Programming-Reference-Guide
/ functions
Functions
707 in github.com/PacktPublishing/The-Complete-Rust-Programming-Reference-Guide
⨍
Functions
707
◇
Types & classes
174
Function
bench_vec_append
(b: &mut Bencher)
Chapter14/src/lib.rs:99
Function
bench_vec_find
(b: &mut Bencher)
Chapter14/src/lib.rs:64
Function
better_transaction_log_append
()
Chapter14/src/lib.rs:155
Function
better_transaction_log_iterator
()
Chapter14/src/lib.rs:200
Function
better_transaction_log_pop
()
Chapter14/src/lib.rs:178
Function
binary_heap_add
()
Chapter15/src/lib.rs:408
Function
binary_heap_pop
()
Chapter15/src/lib.rs:419
Function
binary_search
(haystack: &[T], needle: &T)
Chapter20/src/lib.rs:38
Function
binary_search_tree_add
()
Chapter15/src/lib.rs:189
Function
binary_search_tree_find
()
Chapter15/src/lib.rs:225
Function
binary_search_tree_walk_in_order
()
Chapter15/src/lib.rs:202
Function
box_ref
(b: T)
Chapter05/box_basics.rs:3
Function
btree_add
()
Chapter15/src/lib.rs:598
Function
btree_find
()
Chapter15/src/lib.rs:636
Function
btree_walk_in_order
()
Chapter15/src/lib.rs:613
Method
cause
(&self)
Chapter06/todolist_parser/src/error.rs:37
Method
cause
(&self)
Chapter05/todolist_parser/src/error.rs:37
Function
complex_addition
()
Chapter04/complex/src/lib.rs:52
Function
complex_basics
()
Chapter04/complex/src/lib.rs:44
Function
complex_display
()
Chapter04/complex/src/lib.rs:68
Function
complex_from
()
Chapter04/complex/src/lib.rs:60
Method
connected
(&self, from: KeyType, degree: usize)
Chapter15/src/graph.rs:172
Function
count_words
(mut cx: FunctionContext)
Chapter10/native_counter/native/src/lib.rs:8
Method
description
(&self)
Chapter06/todolist_parser/src/error.rs:33
Method
description
(&self)
Chapter05/todolist_parser/src/error.rs:33
Function
double
(val: usize)
Chapter06/using_map.rs:11
Function
double
(val: usize)
Chapter05/using_map.rs:11
Method
drive
(&self)
Chapter07/ufcs.rs:4
Method
drop
(&mut self)
Chapter05/drop.rs:8
Function
dynamic_array_append
()
Chapter14/src/lib.rs:290
Function
dynamic_array_at
()
Chapter14/src/lib.rs:300
Function
dynamic_array_iterate
()
Chapter14/src/lib.rs:313
Method
edges
(&self)
Chapter15/src/graph.rs:69
Method
eq
(&self, other: &Node)
Chapter15/src/red_black_tree.rs:37
Method
eq
(&self, other: &Node)
Chapter15/src/trie.rs:26
Method
eq
(&self, other: &Node<K>)
Chapter16/src/set.rs:34
Function
fibonacci_benchmark
(c: &mut Criterion)
Chapter03/criterion_demo/benches/fibonacci.rs:10
Method
fill
(&self, items: Vec<&Item>)
Chapter21/src/knapsack.rs:30
Method
find
(&self, id: KeyType)
Chapter15/src/btree.rs:248
Method
find
(&self, numerical_id: u64)
Chapter15/src/red_black_tree.rs:359
Method
find
(&self, numerical_id: u64)
Chapter15/src/binary_search_tree.rs:55
Function
find_words
(src: &str, suffix: &str)
Chapter10/word_suffix/src/lib.rs:18
Method
fmt
(&self, f: &mut Formatter)
Chapter04/complex/src/lib.rs:35
Method
fmt
(&self, f: &mut std::fmt::Formatter)
Chapter14/src/skip_list.rs:157
Method
fmt
(&self, f: &mut fmt::Formatter)
Chapter06/todolist_parser/src/error.rs:20
Method
fmt
(&self, f: &mut fmt::Formatter)
Chapter05/todolist_parser/src/error.rs:20
Method
fmt
(&self, f: &mut fmt::Formatter)
Chapter11/slog_demo/src/weapon.rs:25
Method
from
(value: (T, T))
Chapter04/complex/src/lib.rs:27
Function
generic
(val: &Foo)
Chapter07/object_safety.rs:7
Method
get_area
(&self)
Chapter04/trait_objects.rs:15
Method
get_friends
(&self)
Chapter01/struct_methods.rs:18
Method
get_num
(&self)
Chapter05/lifetime_impls.rs:9
Method
get_todos
(path: P)
Chapter06/todolist_parser/src/lib.rs:21
Method
get_todos
(path: P)
Chapter05/todolist_parser/src/lib.rs:21
Function
graph_find_shortest_path
()
Chapter15/src/lib.rs:672
Function
graph_insert_edges
()
Chapter15/src/lib.rs:661
Function
graph_neighbors
()
Chapter15/src/lib.rs:698
Function
half_adder
This function implements a half adder using primitive gates
Chapter03/logic_gates/tests/half_adder.rs:18
Method
handle
(&mut self, _new_link: GetLinks, _: &mut Self::Context)
Chapter13/linksnap/src/state.rs:59
Method
handle
(&mut self, msg: Add, _: &mut Self::Context)
Chapter08/actor_demo/src/main.rs:25
Function
handle_client
(client: TcpStream)
Chapter12/rudis_async/src/main.rs:42
Function
hash_map_get
()
Chapter16/src/lib.rs:346
Function
hash_map_insert
()
Chapter16/src/lib.rs:298
Function
hash_map_remove
()
Chapter16/src/lib.rs:320
Function
hashcode_test
()
Chapter16/src/lib.rs:162
Method
hello
()
Chapter02/my_program/foo/bar.rs:5
Method
inc
(&mut self)
Chapter08/threads_sharing.rs:19
Function
index
(_req: HttpRequest<State>)
Chapter13/linksnap/src/route_handlers.rs:21
Method
init
()
Chapter13/linksnap/src/state.rs:37
Method
init
()
Chapter02/modules_demo/foo.rs:6
Method
into_iter
(self)
Chapter14/src/dynamic_array.rs:58
Method
into_iter
(self)
Chapter14/src/doubly_linked_list.rs:82
Function
into_map_derive
(input: TokenStream)
Chapter09/into_map_demo/into_map_derive/src/lib.rs:8
Method
is_a_valid_btree
(&self)
Chapter15/src/btree.rs:213
Method
is_a_valid_red_black_tree
(&self)
Chapter15/src/red_black_tree.rs:114
Function
jump_search
( haystack: &[T], needle: &T, jump_size: usize, )
Chapter20/src/lib.rs:15
Function
levenshtein_safe
(a: &str, b: &str)
Chapter10/edit_distance/src/lib.rs:8
Function
links
(req: HttpRequest<State>)
Chapter13/linksnap/src/route_handlers.rs:38
Method
load_global_config
()
Chapter11/log4rs_demo/my_lib/src/lib.rs:9
Function
main
()
Chapter04/trait_bound_intro_fixed.rs:29
Function
main
()
Chapter04/impl_trait_closure.rs:7
Function
main
()
Chapter04/unusable_str.rs:3
Function
main
()
Chapter04/let_pattern_wrapper.rs:3
Function
main
()
Chapter04/generic_function.rs:7
Function
main
()
Chapter04/trait_bound_basics.rs:7
Function
main
()
Chapter04/trait_objects.rs:26
Function
main
()
Chapter04/trait_bounds_types.rs:16
Function
main
()
Chapter04/generic_enum.rs:8
Function
main
()
Chapter04/generic_struct_impl.rs:13
Function
main
()
Chapter04/expressions.rs:7
Function
main
()
Chapter04/generic_struct.rs:19
Function
main
()
Chapter04/trait_bound_basics_fixed.rs:9
Function
main
()
Chapter04/using_generic_vec.rs:3
Function
main
()
Chapter04/creating_generic_vec.rs:1
Function
main
()
Chapter04/trait_inheritance.rs:28
Function
main
()
Chapter04/impl_trait_both.rs:9
Function
main
()
Chapter04/trait_bound_functions.rs:25
Function
main
()
Chapter04/impl_trait_syntax.rs:9
Function
main
()
Chapter04/trait_bound_intro.rs:13
Function
main
()
Chapter04/using_generic_func.rs:5
← previous
next →
301–400 of 707, ranked by callers