diff options
Diffstat (limited to 'vendor/yoke/src/yoke.rs')
-rw-r--r-- | vendor/yoke/src/yoke.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/yoke/src/yoke.rs b/vendor/yoke/src/yoke.rs index 7468b4d99..ef76aa86a 100644 --- a/vendor/yoke/src/yoke.rs +++ b/vendor/yoke/src/yoke.rs @@ -74,6 +74,7 @@ use alloc::sync::Arc; /// assert_eq!(&**yoke.get(), "hello"); /// assert!(matches!(yoke.get(), &Cow::Borrowed(_))); /// ``` +#[derive(Debug)] pub struct Yoke<Y: for<'a> Yokeable<'a>, C> { // must be the first field for drop order // this will have a 'static lifetime parameter, that parameter is a lie @@ -1309,6 +1310,5 @@ const _: () = (); /// println!("pre-drop: {reference}"); /// drop(local); /// println!("post-drop: {reference}"); -/// /// ``` const _: () = (); |