1use serde::Serialize; 2 3#[derive(Debug, Clone, Serialize)] 4pub struct NavigationRequest { 5 pub url: String, 6 pub wait_until: String, 7}