pub struct InstanceArgs {
pub name: String,
pub short_id: String,
pub code: String,
pub service_id: String,
pub cluster_id: Option<String>,
pub color: String,
pub machine_id: String,
pub message: Option<String>,
pub status: InstanceStatus,
}
Fields§
§name: String
§short_id: String
§code: String
§service_id: String
§cluster_id: Option<String>
§color: String
§machine_id: String
§message: Option<String>
§status: InstanceStatus
Trait Implementations§
Source§impl Clone for InstanceArgs
impl Clone for InstanceArgs
Source§fn clone(&self) -> InstanceArgs
fn clone(&self) -> InstanceArgs
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 moreAuto Trait Implementations§
impl Freeze for InstanceArgs
impl RefUnwindSafe for InstanceArgs
impl Send for InstanceArgs
impl Sync for InstanceArgs
impl Unpin for InstanceArgs
impl UnwindSafe for InstanceArgs
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