Crate leptos_reqwest

Source
Expand description

This module provides utilities for making HTTP requests with reqwest and handling responses with custom error handling through the LeptosReqwestError trait. It includes support for different HTTP methods and deserialization of responses into custom types.

Enums§

HttpMethod
Enum representing different HTTP methods.

Traits§

LeptosReqwestError
Trait for custom error handling in reqwest requests, requiring Default and Serializable implementations.

Functions§

send
Sends an HTTP request and returns a boolean indicating success.
send_and_parse
Sends an HTTP request and deserializes the response into a specified type.