pub struct DeploymentAvailable {
pub request_id: String,
pub app_name: String,
pub app_version: String,
pub available_sockets: i32,
}Fields§
§request_id: StringThe ID of the deployment
app_name: StringThe name of the application
app_version: StringThe name of the application version
available_sockets: i32The number of sockets
Implementations§
Trait Implementations§
Source§impl Clone for DeploymentAvailable
impl Clone for DeploymentAvailable
Source§fn clone(&self) -> DeploymentAvailable
fn clone(&self) -> DeploymentAvailable
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 DeploymentAvailable
impl Debug for DeploymentAvailable
Source§impl Default for DeploymentAvailable
impl Default for DeploymentAvailable
Source§fn default() -> DeploymentAvailable
fn default() -> DeploymentAvailable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentAvailable
impl<'de> Deserialize<'de> for DeploymentAvailable
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 DeploymentAvailable
impl PartialEq for DeploymentAvailable
Source§impl Serialize for DeploymentAvailable
impl Serialize for DeploymentAvailable
impl StructuralPartialEq for DeploymentAvailable
Auto Trait Implementations§
impl Freeze for DeploymentAvailable
impl RefUnwindSafe for DeploymentAvailable
impl Send for DeploymentAvailable
impl Sync for DeploymentAvailable
impl Unpin for DeploymentAvailable
impl UnwindSafe for DeploymentAvailable
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