Struct malwaredb_api::ServerInfo
source · pub struct ServerInfo {
pub os_name: String,
pub os_version: String,
pub memory_used: String,
pub mdb_version: String,
pub db_version: String,
pub db_size: String,
pub num_samples: u64,
pub num_users: u32,
pub uptime: String,
}
Expand description
Information about the server
Fields§
§os_name: String
§os_version: String
§memory_used: String
§mdb_version: String
§db_version: String
§db_size: String
§num_samples: u64
§num_users: u32
§uptime: String
Trait Implementations§
source§impl Clone for ServerInfo
impl Clone for ServerInfo
source§fn clone(&self) -> ServerInfo
fn clone(&self) -> ServerInfo
Returns a copy 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 Debug for ServerInfo
impl Debug for ServerInfo
source§impl<'de> Deserialize<'de> for ServerInfo
impl<'de> Deserialize<'de> for ServerInfo
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 PartialEq for ServerInfo
impl PartialEq for ServerInfo
source§fn eq(&self, other: &ServerInfo) -> bool
fn eq(&self, other: &ServerInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ServerInfo
impl Serialize for ServerInfo
impl StructuralPartialEq for ServerInfo
Auto Trait Implementations§
impl RefUnwindSafe for ServerInfo
impl Send for ServerInfo
impl Sync for ServerInfo
impl Unpin for ServerInfo
impl UnwindSafe for ServerInfo
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