pub trait CurlBodyRequest {
// Required method
fn get_bytes(&self) -> Option<&Vec<u8>>;
}Expand description
The purpose of this trait is to be able to accept
request body with Option<Vec
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".