pub struct ServiceUpdatesMessage {
pub marker: Option<String>,
pub service_updates: Option<Vec<ServiceUpdate>>,
}
Fields§
§marker: Option<String>
An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
service_updates: Option<Vec<ServiceUpdate>>
A list of service updates
Trait Implementations§
Source§impl Clone for ServiceUpdatesMessage
impl Clone for ServiceUpdatesMessage
Source§fn clone(&self) -> ServiceUpdatesMessage
fn clone(&self) -> ServiceUpdatesMessage
Returns a copy 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 ServiceUpdatesMessage
impl Debug for ServiceUpdatesMessage
Source§impl Default for ServiceUpdatesMessage
impl Default for ServiceUpdatesMessage
Source§fn default() -> ServiceUpdatesMessage
fn default() -> ServiceUpdatesMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ServiceUpdatesMessage
impl PartialEq for ServiceUpdatesMessage
impl StructuralPartialEq for ServiceUpdatesMessage
Auto Trait Implementations§
impl Freeze for ServiceUpdatesMessage
impl RefUnwindSafe for ServiceUpdatesMessage
impl Send for ServiceUpdatesMessage
impl Sync for ServiceUpdatesMessage
impl Unpin for ServiceUpdatesMessage
impl UnwindSafe for ServiceUpdatesMessage
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