MCPcopy Create free account

hub / github.com/BersisSe/feather / functions

Functions143 in github.com/BersisSe/feather

Functiontest_concurrent_set_and_get
()
crates/feather/src/internals/context.rs:581
Functiontest_conn_sim_concurrent_cursors
()
crates/feather-runtime/tests/conn_cursor_tests.rs:36
Functiontest_conn_sim_single_request_with_cursor
()
crates/feather-runtime/tests/conn_cursor_tests.rs:10
Functiontest_default_constructor
()
crates/feather/src/internals/context.rs:611
Functiontest_empty_context
()
crates/feather/src/internals/context.rs:619
Functiontest_error_response
()
crates/feather-runtime/tests/response_tests.rs:60
Functiontest_get_state_panics_when_missing
()
crates/feather/src/internals/context.rs:392
Functiontest_json_response
()
crates/feather-runtime/tests/response_tests.rs:36
Functiontest_large_number_of_types
()
crates/feather/src/internals/context.rs:668
Functiontest_multiple_different_types
()
crates/feather/src/internals/context.rs:398
Functiontest_nested_arc_types
()
crates/feather/src/internals/context.rs:519
Functiontest_option_types
()
crates/feather/src/internals/context.rs:628
Functiontest_parse_empty_method
()
crates/feather-runtime/tests/request_tests.rs:61
Functiontest_parse_invalid_method
()
crates/feather-runtime/tests/request_tests.rs:53
Functiontest_parse_missing_method
()
crates/feather-runtime/tests/request_tests.rs:67
Functiontest_parse_request_with_body
()
crates/feather-runtime/tests/request_tests.rs:25
Functiontest_parse_request_with_headers
()
crates/feather-runtime/tests/request_tests.rs:44
Functiontest_parse_request_with_query_params
()
crates/feather-runtime/tests/request_tests.rs:35
Functiontest_parse_simple_get_request
()
crates/feather-runtime/tests/request_tests.rs:16
Functiontest_remove_state_exists
()
crates/feather/src/internals/context.rs:431
Functiontest_remove_state_not_exists
()
crates/feather/src/internals/context.rs:443
Functiontest_replace_state
()
crates/feather/src/internals/context.rs:415
Functiontest_response_creation
()
crates/feather-runtime/tests/response_tests.rs:5
Functiontest_response_headers_case_insensitivity
()
crates/feather-runtime/tests/response_tests.rs:71
Functiontest_response_with_custom_headers
()
crates/feather-runtime/tests/response_tests.rs:21
Functiontest_result_types
()
crates/feather/src/internals/context.rs:642
Functiontest_set_and_get_state
()
crates/feather/src/internals/context.rs:359
Functiontest_state_isolation_by_type
()
crates/feather/src/internals/context.rs:484
Functiontest_thread_safety
()
crates/feather/src/internals/context.rs:530
Functiontest_try_get_state_none
()
crates/feather/src/internals/context.rs:383
Functiontest_try_get_state_some
()
crates/feather/src/internals/context.rs:372
Functiontest_tuple_types
()
crates/feather/src/internals/context.rs:656
Functiontest_valid_http_methods
()
crates/feather-runtime/tests/request_tests.rs:73
Methodtry_get_state
Try to fetch state by type, returning `Some(Arc<T>)` if present. This is the non-panicking version of [`get_state`]. # Example ```rust,ignore if le
crates/feather/src/internals/context.rs:286
Methoduse_middleware
(&mut self, mw: M)
crates/feather/src/internals/router.rs:37
Methodvalidate
Validate the claims. Return an error if invalid.
crates/feather/src/jwt.rs:37
Methodwith_config
Create a new instance of the application with a custom server configuration. # Example ```rust,ignore use feather::{App, ServerConfig}; let config =
crates/feather/src/internals/app.rs:126
Methodwith_config
Create a new Server instance with custom configuration
crates/feather-runtime/src/runtime/server.rs:62
Functionwith_jwt_auth
Protects a route using JWT authentication. This middleware checks for a valid `Authorization: Bearer <token>` header, decodes it using the `JwtManage
crates/feather/src/jwt.rs:225
Methodwith_mut_scope
Execute a closure with mutable access to the inner state. This is the most ergonomic way to modify state. The lock is automatically released after th
crates/feather/src/internals/context.rs:112
Methodwith_scope
Execute a closure with read-only access to the inner state. This is useful when you only need to read the state without modifying it. The lock is aut
crates/feather/src/internals/context.rs:88
Methodwithout_logger
Create a new instance of the application without initializing the logger. This is useful if you want to manage logging yourself or use a different log
crates/feather/src/internals/app.rs:102
Methodworkers
(&mut self, count: usize)
crates/feather/src/internals/app.rs:235
← previous101–143 of 143, ranked by callers