diff --git a/src/api/types.rs b/src/api/types.rs index c6c9a13..1ab64b1 100644 --- a/src/api/types.rs +++ b/src/api/types.rs @@ -153,10 +153,10 @@ pub struct UserObject { #[derive(Debug)] pub struct User<'a> { - logged_in: bool, - belongs_to: &'a Instance<'a>, + pub logged_in: bool, + pub belongs_to: &'a Instance<'a>, token: String, - rate_limits: Limits, + pub rate_limits: Limits, pub settings: UserSettings, pub object: UserObject, }