We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 923be31 commit 4267b56Copy full SHA for 4267b56
crates/byondapi-rs/src/value/refcounted.rs
@@ -1,7 +1,8 @@
1
use super::ByondValue;
2
use std::ops::{Deref, DerefMut};
3
4
-/// Refcounted ByondValue, for refs you want rust to handle incrementing and decrementing.
+/// Refcounted [`ByondValue`], for refs you want rust to handle incrementing and decrementing.
5
+/// Recommended practise is to not use the [`ByondValue`] that's already converted to [`RcByondValue`]
6
#[derive(Debug)]
7
pub struct RcByondValue(ByondValue);
8
0 commit comments