diff --git a/src/video.rs b/src/video.rs index 76cfa1f..6b6b8a9 100644 --- a/src/video.rs +++ b/src/video.rs @@ -41,6 +41,7 @@ impl From for Position { } } +#[derive(Debug)] pub(crate) struct Internal { pub(crate) id: u64, @@ -174,6 +175,7 @@ impl Internal { } /// A multimedia video loaded from a URI (e.g., a local file path or HTTP stream). +#[derive(Debug)] pub struct Video(pub(crate) RefCell); impl Drop for Video {