pub struct EventHandlerResult {
pub session_id: Option<String>,
pub session_title: Option<String>,
}Expand description
Result from processing an event. Contains any state updates the caller should apply.
Fields§
§session_id: Option<String>Updated session ID (set when a session is created or changed).
session_title: Option<String>Extracted session title.
Auto Trait Implementations§
impl Freeze for EventHandlerResult
impl RefUnwindSafe for EventHandlerResult
impl Send for EventHandlerResult
impl Sync for EventHandlerResult
impl Unpin for EventHandlerResult
impl UnsafeUnpin for EventHandlerResult
impl UnwindSafe for EventHandlerResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more