1 2 3 4 5 6 7 8 9 10
use anyhow::Result; use moguls::prelude::*; fn main() -> Result<()> { let speeches = fetch_fed_speech(Some(FilterOption { speaker: Some(JEROME_POWELL.to_string()), }))?; println!("{:?}", speeches); Ok(()) }