Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
duckdb::PostRequestInfo Struct Reference
Inheritance diagram for duckdb::PostRequestInfo:
Collaboration diagram for duckdb::PostRequestInfo:

Public Member Functions

 PostRequestInfo (const string &path, const HTTPHeaders &headers, HTTPParams &params, const_data_ptr_t buffer_in, idx_t buffer_in_len)
 
- Public Member Functions inherited from duckdb::BaseRequest
 BaseRequest (RequestType type, const string &url, const HTTPHeaders &headers, HTTPParams &params)
 
template<class TARGET >
TARGETCast ()
 
template<class TARGET >
const TARGETCast () const
 

Public Attributes

const_data_ptr_t buffer_in
 
idx_t buffer_in_len
 
string buffer_out
 
bool send_post_as_get_request = false
 Used to send a GET request with a body (non-standard but supported by some servers)
 
- Public Attributes inherited from duckdb::BaseRequest
RequestType type
 
const string & url
 
string path
 
string proto_host_port
 
HTTPHeaders headers
 
HTTPParamsparams
 
bool try_request = false
 Whether or not to return failed requests (instead of throwing)
 
bool have_request_timing = false
 
timestamp_t request_start
 
timestamp_t request_end
 

Additional Inherited Members

- Static Public Member Functions inherited from duckdb::BaseRequest
static HTTPHeaders MergeHeaders (const HTTPHeaders &headers, HTTPParams &params)
 

Constructor & Destructor Documentation

◆ PostRequestInfo()

duckdb::PostRequestInfo::PostRequestInfo ( const string &  path,
const HTTPHeaders headers,
HTTPParams params,
const_data_ptr_t  buffer_in,
idx_t  buffer_in_len 
)
inline
53243 : BaseRequest(RequestType::POST_REQUEST, path, headers, params), buffer_in(buffer_in),
53244 buffer_in_len(buffer_in_len) {
53245 }

The documentation for this struct was generated from the following file: