From de643f9f8da70fbe7e55b4acd59a0a9dbac7c85f Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Sat, 29 Dec 2018 13:15:01 -0600 Subject: [PATCH] include segments in debug output --- src/mp4.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mp4.rs b/src/mp4.rs index 699f3e8..cc51b3d 100644 --- a/src/mp4.rs +++ b/src/mp4.rs @@ -1529,6 +1529,7 @@ impl fmt::Debug for File { .field("last_modified", &self.0.last_modified) .field("etag", &self.0.etag) .field("slices", &self.0.slices) + .field("segments", &self.0.segments) .finish() } }