pub struct Response200System {Show 23 fields
pub root_directory: CompactString,
pub log_directory: CompactString,
pub vmount_directory: CompactString,
pub data: CompactString,
pub archive_directory: CompactString,
pub backup_directory: CompactString,
pub tmp_directory: CompactString,
pub username: CompactString,
pub timezone: CompactString,
pub user: Response200SystemUser,
pub passwd: Response200SystemPasswd,
pub disk_check_interval: u64,
pub disk_check_use_inotify: bool,
pub disk_limiter_mode: DiskLimiterMode,
pub activity_send_interval: u64,
pub activity_send_count: u64,
pub check_permissions_on_boot: bool,
pub check_permissions_on_boot_threads: u64,
pub websocket_log_count: u64,
pub sftp: Response200SystemSftp,
pub crash_detection: Response200SystemCrashDetection,
pub backups: Response200SystemBackups,
pub transfers: Response200SystemTransfers,
}Fields§
§root_directory: CompactString§log_directory: CompactString§vmount_directory: CompactString§data: CompactString§archive_directory: CompactString§backup_directory: CompactString§tmp_directory: CompactString§username: CompactString§timezone: CompactString§user: Response200SystemUser§passwd: Response200SystemPasswd§disk_check_interval: u64§disk_check_use_inotify: bool§disk_limiter_mode: DiskLimiterMode§activity_send_interval: u64§activity_send_count: u64§check_permissions_on_boot: bool§check_permissions_on_boot_threads: u64§websocket_log_count: u64§sftp: Response200SystemSftp§crash_detection: Response200SystemCrashDetection§backups: Response200SystemBackups§transfers: Response200SystemTransfersTrait Implementations§
Source§impl Clone for Response200System
impl Clone for Response200System
Source§fn clone(&self) -> Response200System
fn clone(&self) -> Response200System
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for Response200System
impl ComposeSchema for Response200System
Source§impl Debug for Response200System
impl Debug for Response200System
Source§impl<'de> Deserialize<'de> for Response200System
impl<'de> Deserialize<'de> for Response200System
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
Source§impl Serialize for Response200System
impl Serialize for Response200System
Auto Trait Implementations§
impl Freeze for Response200System
impl RefUnwindSafe for Response200System
impl Send for Response200System
impl Sync for Response200System
impl Unpin for Response200System
impl UnwindSafe for Response200System
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more