From f38689959ac05c4d3acdcf0a6c3f5ffa1da1d11f Mon Sep 17 00:00:00 2001 From: Rene van der Meer <9930578+golemparts@users.noreply.github.com> Date: Thu, 8 Aug 2024 14:15:54 +0200 Subject: [PATCH] Update documentation --- src/gpio.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gpio.rs b/src/gpio.rs index 4dfb2c4..2034331 100644 --- a/src/gpio.rs +++ b/src/gpio.rs @@ -348,7 +348,7 @@ pub struct Event { pub timestamp: Duration, /// Sequence number for this event in the sequence of interrupt trigger events for this pin. pub seqno: u32, - /// Interrupt trigger. + /// Interrupt trigger. This will contain either [Trigger::RisingEdge] or [Trigger::FallingEdge]. pub trigger: Trigger, }