Struct qbit_api_rs::types::AppSetPreferencesForm
source · pub struct AppSetPreferencesForm {
pub json: AppPreferences,
}
Expand description
/api/v2/app/setPreferences
Warning
: some fields should be set together.
For example: Setting max_ratio
separatly has no effect unless with max_ratio_enabled
together.
A better methed is to get the current preferences from /api/v2/app/preferences
and change the fields within,
then send the changed preferences back to /api/v2/app/setPreferences
Fields§
§json: AppPreferences
Trait Implementations§
source§impl Debug for AppSetPreferencesForm
impl Debug for AppSetPreferencesForm
Auto Trait Implementations§
impl RefUnwindSafe for AppSetPreferencesForm
impl Send for AppSetPreferencesForm
impl Sync for AppSetPreferencesForm
impl Unpin for AppSetPreferencesForm
impl UnwindSafe for AppSetPreferencesForm
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more