pub struct ConfigResponse {
pub skip_apps: Vec<String>,
pub skip_title_patterns: Vec<String>,
pub private_browsing_detection: bool,
pub setup_completed: bool,
pub clipboard_enabled: bool,
pub screen_capture_enabled: bool,
pub selection_capture_enabled: bool,
pub remote_access_enabled: bool,
}Fields§
§skip_apps: Vec<String>§skip_title_patterns: Vec<String>§private_browsing_detection: bool§setup_completed: bool§clipboard_enabled: bool§screen_capture_enabled: bool§selection_capture_enabled: bool§remote_access_enabled: boolTrait Implementations§
Source§impl Debug for ConfigResponse
impl Debug for ConfigResponse
Source§impl<'de> Deserialize<'de> for ConfigResponse
impl<'de> Deserialize<'de> for ConfigResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ConfigResponse
impl RefUnwindSafe for ConfigResponse
impl Send for ConfigResponse
impl Sync for ConfigResponse
impl Unpin for ConfigResponse
impl UnsafeUnpin for ConfigResponse
impl UnwindSafe for ConfigResponse
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