diff --git a/src/view/traits.rs b/src/view/traits.rs index 6d350c0..b8540d8 100644 --- a/src/view/traits.rs +++ b/src/view/traits.rs @@ -10,16 +10,16 @@ pub trait ViewDelegate { fn did_load(&self, _view: View) {} /// Called when this is about to be added to the view heirarchy. - fn will_appear(&self, animated: bool) {} + fn will_appear(&self, _animated: bool) {} /// Called after this has been added to the view heirarchy. - fn did_appear(&self, animated: bool) {} + fn did_appear(&self, _animated: bool) {} /// Called when this is about to be removed from the view heirarchy. - fn will_disappear(&self, animated: bool) {} + fn will_disappear(&self, _animated: bool) {} /// Called when this has been removed from the view heirarchy. - fn did_disappear(&self, animated: bool) {} + fn did_disappear(&self, _animated: bool) {} /// Invoked when the dragged image enters destination bounds or frame; returns dragging operation to perform. fn dragging_entered(&self, _info: DragInfo) -> DragOperation { DragOperation::None }