From fc9032c03813700ef1dc1229b48900978f820656 Mon Sep 17 00:00:00 2001 From: bitfl0wer Date: Wed, 3 May 2023 17:11:48 +0200 Subject: [PATCH] change visibilities to pub --- src/api/types.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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, }