#[repr(C)]pub struct _duckdb_value {
pub internal_ptr: *mut c_void,
}
Expand description
! Holds a DuckDB value, which wraps a type.
! Must be destroyed with duckdb_destroy_value
.
Fields§
§internal_ptr: *mut c_void
Trait Implementations§
Source§impl Clone for _duckdb_value
impl Clone for _duckdb_value
Source§fn clone(&self) -> _duckdb_value
fn clone(&self) -> _duckdb_value
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for _duckdb_value
impl Debug for _duckdb_value
impl Copy for _duckdb_value
Auto Trait Implementations§
impl Freeze for _duckdb_value
impl RefUnwindSafe for _duckdb_value
impl !Send for _duckdb_value
impl !Sync for _duckdb_value
impl Unpin for _duckdb_value
impl UnwindSafe for _duckdb_value
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more