pub struct DuckString<'a> { /* private fields */ }Expand description
Wrapper for underlying duck string type with a lifetime bound to a &mut duckdb_string_t
Implementations§
Source§impl<'a> DuckString<'a>
impl<'a> DuckString<'a>
Sourcepub fn new(ptr: &'a mut duckdb_string_t) -> Self
pub fn new(ptr: &'a mut duckdb_string_t) -> Self
Creates a DuckString from the underlying duck string type
Auto Trait Implementations§
impl<'a> Freeze for DuckString<'a>
impl<'a> RefUnwindSafe for DuckString<'a>
impl<'a> !Send for DuckString<'a>
impl<'a> !Sync for DuckString<'a>
impl<'a> Unpin for DuckString<'a>
impl<'a> !UnwindSafe for DuckString<'a>
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