1pub struct Guest {} 2 3pub trait GuestCore { 4 // static methods 5 fn console_log(message: String); 6 fn success(response: String); 7}