Adding in Debug implementation for OnTimestampDiff

This commit is contained in:
Pauan 2018-07-30 14:33:53 -10:00
parent 795c2e3ae9
commit bde76d90a4
1 changed files with 7 additions and 0 deletions

View File

@ -527,6 +527,13 @@ impl OnTimestampDiff {
}
}
impl fmt::Debug for OnTimestampDiff {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_tuple("OnTimestampDiff")
.finish()
}
}
pub struct MutableAnimationSignal(MutableSignal<Percentage>);