We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30d61eb commit c949b26Copy full SHA for c949b26
pgrx/src/text.rs
@@ -13,7 +13,7 @@ use core::ptr;
13
#[repr(transparent)]
14
pub struct Text([u8]);
15
16
-// TODO(0.12.0): strip this and make Text forward its impl to BStr fn instead
+// TODO: strip this and make Text forward its impl to BStr fn instead?
17
impl Deref for Text {
18
type Target = str;
19
fn deref(&self) -> &str {
@@ -22,7 +22,7 @@ impl Deref for Text {
22
}
23
24
25
26
impl DerefMut for Text {
27
fn deref_mut(&mut self) -> &mut str {
28
let self_ptr = self as *mut Text as *mut pg_sys::varlena;
0 commit comments