pub struct BatchUpdateItemResult {
pub host_software_item_id: Uuid,
pub update_history_id: Uuid,
pub status: UpdateFinalStatus,
pub output: String,
pub installed_version: Option<String>,
pub error: Option<String>,
}Expand description
Result of updating a single item within a batch operation.
Fields§
§host_software_item_id: UuidHost software item entity ID.
update_history_id: UuidUpdate history record ID.
status: UpdateFinalStatusFinal status of this item’s update.
output: StringAccumulated output from the update.
installed_version: Option<String>Detected installed version after the update (if detection succeeded).
error: Option<String>Error message if the update failed.
Trait Implementations§
Source§impl Clone for BatchUpdateItemResult
impl Clone for BatchUpdateItemResult
Source§fn clone(&self) -> BatchUpdateItemResult
fn clone(&self) -> BatchUpdateItemResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchUpdateItemResult
impl Debug for BatchUpdateItemResult
Source§impl<'de> Deserialize<'de> for BatchUpdateItemResult
impl<'de> Deserialize<'de> for BatchUpdateItemResult
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
impl Eq for BatchUpdateItemResult
Source§impl PartialEq for BatchUpdateItemResult
impl PartialEq for BatchUpdateItemResult
Source§impl Serialize for BatchUpdateItemResult
impl Serialize for BatchUpdateItemResult
impl StructuralPartialEq for BatchUpdateItemResult
Source§impl WireValidate for BatchUpdateItemResult
impl WireValidate for BatchUpdateItemResult
Source§fn wire_validate(&self) -> Result<(), WireValidationError>
fn wire_validate(&self) -> Result<(), WireValidationError>
Validate that all fields are within wire protocol size limits.
Auto Trait Implementations§
impl Freeze for BatchUpdateItemResult
impl RefUnwindSafe for BatchUpdateItemResult
impl Send for BatchUpdateItemResult
impl Sync for BatchUpdateItemResult
impl Unpin for BatchUpdateItemResult
impl UnsafeUnpin for BatchUpdateItemResult
impl UnwindSafe for BatchUpdateItemResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.