pub struct SystemInformations {Show 25 fields
pub local_address: String,
pub server_name: String,
pub version: String,
pub product_name: Option<String>,
pub id: String,
pub startup_wizard_complete: Option<bool>,
pub operating_system: String,
pub package_name: Option<String>,
pub has_pending_restart: bool,
pub is_shutting_down: bool,
pub supports_library_monitor: bool,
pub websocket_port: u16,
pub completed_installations: Vec<CompletedInstallations>,
pub can_self_restart: bool,
pub can_launch_webbrowser: bool,
pub program_data_path: String,
pub web_path: String,
pub items_by_name_path: String,
pub cache_path: String,
pub log_path: String,
pub internal_metadata_path: String,
pub transcoding_temp_path: String,
pub has_update_available: bool,
pub encoder_location: String,
pub system_arch: String,
}
Fields§
§local_address: String
§server_name: String
§version: String
§product_name: Option<String>
§id: String
§startup_wizard_complete: Option<bool>
§operating_system: String
§package_name: Option<String>
§has_pending_restart: bool
§is_shutting_down: bool
§supports_library_monitor: bool
§websocket_port: u16
§completed_installations: Vec<CompletedInstallations>
§can_self_restart: bool
§can_launch_webbrowser: bool
§program_data_path: String
§web_path: String
§items_by_name_path: String
§cache_path: String
§log_path: String
§internal_metadata_path: String
§transcoding_temp_path: String
§has_update_available: bool
§encoder_location: String
§system_arch: String
Trait Implementations§
Source§impl Debug for SystemInformations
impl Debug for SystemInformations
Source§impl<'de> Deserialize<'de> for SystemInformations
impl<'de> Deserialize<'de> for SystemInformations
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 SystemInformations
impl RefUnwindSafe for SystemInformations
impl Send for SystemInformations
impl Sync for SystemInformations
impl Unpin for SystemInformations
impl UnwindSafe for SystemInformations
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