pub struct ListConfigurationRevisionsResponse {
pub next_token: Option<String>,
pub revisions: Option<Vec<ConfigurationRevision>>,
}
Fields§
§next_token: Option<String>
<p>Paginated results marker.</p>
revisions: Option<Vec<ConfigurationRevision>>
<p>List of ConfigurationRevision objects.</p>
Trait Implementations§
Source§impl Clone for ListConfigurationRevisionsResponse
impl Clone for ListConfigurationRevisionsResponse
Source§fn clone(&self) -> ListConfigurationRevisionsResponse
fn clone(&self) -> ListConfigurationRevisionsResponse
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 Default for ListConfigurationRevisionsResponse
impl Default for ListConfigurationRevisionsResponse
Source§fn default() -> ListConfigurationRevisionsResponse
fn default() -> ListConfigurationRevisionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListConfigurationRevisionsResponse
impl<'de> Deserialize<'de> for ListConfigurationRevisionsResponse
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 ListConfigurationRevisionsResponse
impl PartialEq for ListConfigurationRevisionsResponse
Source§fn eq(&self, other: &ListConfigurationRevisionsResponse) -> bool
fn eq(&self, other: &ListConfigurationRevisionsResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListConfigurationRevisionsResponse
Auto Trait Implementations§
impl Freeze for ListConfigurationRevisionsResponse
impl RefUnwindSafe for ListConfigurationRevisionsResponse
impl Send for ListConfigurationRevisionsResponse
impl Sync for ListConfigurationRevisionsResponse
impl Unpin for ListConfigurationRevisionsResponse
impl UnwindSafe for ListConfigurationRevisionsResponse
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