pub struct VersionCheckResultsPayload {
pub results: Vec<VersionCheckResult>,
}Expand description
Payload for version check results from the agent.
Fields§
§results: Vec<VersionCheckResult>Results for each checked software item.
Trait Implementations§
Source§impl Clone for VersionCheckResultsPayload
impl Clone for VersionCheckResultsPayload
Source§fn clone(&self) -> VersionCheckResultsPayload
fn clone(&self) -> VersionCheckResultsPayload
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 VersionCheckResultsPayload
impl Debug for VersionCheckResultsPayload
Source§impl<'de> Deserialize<'de> for VersionCheckResultsPayload
impl<'de> Deserialize<'de> for VersionCheckResultsPayload
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 VersionCheckResultsPayload
Source§impl Paginatable for VersionCheckResultsPayload
impl Paginatable for VersionCheckResultsPayload
Source§type Item = VersionCheckResult
type Item = VersionCheckResult
Type of items in the splittable vec.
Source§fn with_items(&self, items: Vec<Self::Item>) -> Self
fn with_items(&self, items: Vec<Self::Item>) -> Self
Reconstruct the payload with a subset of items.
Source§fn into_message(self) -> ServiceMessage
fn into_message(self) -> ServiceMessage
Wrap the payload into a
ServiceMessage.Source§fn max_items_per_page(limits: &ReportPageLimits) -> usize
fn max_items_per_page(limits: &ReportPageLimits) -> usize
Maximum number of items allowed on a single page for this payload type.
Source§impl PartialEq for VersionCheckResultsPayload
impl PartialEq for VersionCheckResultsPayload
Source§fn eq(&self, other: &VersionCheckResultsPayload) -> bool
fn eq(&self, other: &VersionCheckResultsPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VersionCheckResultsPayload
Source§impl WireValidate for VersionCheckResultsPayload
impl WireValidate for VersionCheckResultsPayload
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 VersionCheckResultsPayload
impl RefUnwindSafe for VersionCheckResultsPayload
impl Send for VersionCheckResultsPayload
impl Sync for VersionCheckResultsPayload
impl Unpin for VersionCheckResultsPayload
impl UnsafeUnpin for VersionCheckResultsPayload
impl UnwindSafe for VersionCheckResultsPayload
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.