rbx_asset: context fields should be private

This commit is contained in:
Quaternions 2025-04-05 12:23:13 -07:00
parent e17db96e86
commit 5509fd2166
Signed by: Quaternions
GPG Key ID: D0DF5964F79AC131
2 changed files with 4 additions and 4 deletions
rbx_asset/src

@ -328,8 +328,8 @@ impl ApiKey{
#[derive(Clone)]
pub struct CloudContext{
pub api_key:String,
pub client:reqwest::Client,
api_key:String,
client:reqwest::Client,
}
impl CloudContext{

@ -338,8 +338,8 @@ impl Cookie{
}
#[derive(Clone)]
pub struct CookieContext{
pub cookie:String,
pub client:reqwest::Client,
cookie:String,
client:reqwest::Client,
}
impl CookieContext{