Skip to content

Commit 6568b98

Browse files
committed
examples: Remove unnecessary Debug impl derive from virtual_methods example
1 parent c947074 commit 6568b98

File tree

1 file changed

+1
-1
lines changed
  • examples/virtual_methods

1 file changed

+1
-1
lines changed

examples/virtual_methods/pet.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pub mod ffi {
1313
/// The class struct is used to implement the vtable for method dispatch. The first field
1414
/// *must* be a pointer to the parent type. In our case, this is
1515
/// [`GObjectClass`](glib::gobject_ffi::GObjectClass)
16-
#[derive(Copy, Clone, Debug)]
16+
#[derive(Copy, Clone)]
1717
#[repr(C)]
1818
pub struct Class {
1919
/// The first field in a class struct must always be the parent class struct

0 commit comments

Comments
 (0)