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::CastLocalStateParameters Struct Reference
Collaboration diagram for duckdb::CastLocalStateParameters:

Public Member Functions

 CastLocalStateParameters (optional_ptr< ClientContext > context_p, optional_ptr< BoundCastData > cast_data_p)
 
 CastLocalStateParameters (ClientContext &context_p, optional_ptr< BoundCastData > cast_data_p)
 
 CastLocalStateParameters (CastLocalStateParameters &parent, optional_ptr< BoundCastData > cast_data_p)
 

Public Attributes

optional_ptr< ClientContextcontext
 
optional_ptr< BoundCastDatacast_data
 The bound cast data (if any)
 

Constructor & Destructor Documentation

◆ CastLocalStateParameters() [1/3]

duckdb::CastLocalStateParameters::CastLocalStateParameters ( optional_ptr< ClientContext context_p,
optional_ptr< BoundCastData cast_data_p 
)
inline
38563 : context(context_p), cast_data(cast_data_p) {
38564 }
optional_ptr< BoundCastData > cast_data
The bound cast data (if any)
Definition duckdb.hpp:38574

◆ CastLocalStateParameters() [2/3]

duckdb::CastLocalStateParameters::CastLocalStateParameters ( ClientContext context_p,
optional_ptr< BoundCastData cast_data_p 
)
inline
38566 : context(&context_p), cast_data(cast_data_p) {
38567 }

◆ CastLocalStateParameters() [3/3]

duckdb::CastLocalStateParameters::CastLocalStateParameters ( CastLocalStateParameters parent,
optional_ptr< BoundCastData cast_data_p 
)
inline
38569 : context(parent.context), cast_data(cast_data_p) {
38570 }

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