pub struct ServerType {
pub id: u64,
pub name: String,
pub description: String,
pub cores: u32,
pub memory: f64,
pub disk: u64,
}Fields§
§id: u64§name: String§description: String§cores: u32§memory: f64§disk: u64Trait Implementations§
Source§impl Clone for ServerType
impl Clone for ServerType
Source§fn clone(&self) -> ServerType
fn clone(&self) -> ServerType
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 Debug for ServerType
impl Debug for ServerType
Source§impl<'de> Deserialize<'de> for ServerType
impl<'de> Deserialize<'de> for ServerType
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 ServerType
impl RefUnwindSafe for ServerType
impl Send for ServerType
impl Sync for ServerType
impl Unpin for ServerType
impl UnwindSafe for ServerType
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