change visibilities to pub

This commit is contained in:
bitfl0wer 2023-05-03 17:11:48 +02:00
parent efb68a607a
commit fc9032c038
1 changed files with 3 additions and 3 deletions

View File

@ -153,10 +153,10 @@ pub struct UserObject {
#[derive(Debug)] #[derive(Debug)]
pub struct User<'a> { pub struct User<'a> {
logged_in: bool, pub logged_in: bool,
belongs_to: &'a Instance<'a>, pub belongs_to: &'a Instance<'a>,
token: String, token: String,
rate_limits: Limits, pub rate_limits: Limits,
pub settings: UserSettings, pub settings: UserSettings,
pub object: UserObject, pub object: UserObject,
} }