pub struct ClusterDbRevisionsMessage {
pub cluster_db_revisions: Option<Vec<ClusterDbRevision>>,
pub marker: Option<String>,
}
Fields§
§cluster_db_revisions: Option<Vec<ClusterDbRevision>>
A list of revisions.
marker: Option<String>
A string representing the starting point for the next set of revisions. If a value is returned in a response, you can retrieve the next set of revisions by providing the value in the marker
parameter and retrying the command. If the marker
field is empty, all revisions have already been returned.
Trait Implementations§
Source§impl Clone for ClusterDbRevisionsMessage
impl Clone for ClusterDbRevisionsMessage
Source§fn clone(&self) -> ClusterDbRevisionsMessage
fn clone(&self) -> ClusterDbRevisionsMessage
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 moreSource§impl Debug for ClusterDbRevisionsMessage
impl Debug for ClusterDbRevisionsMessage
Source§impl Default for ClusterDbRevisionsMessage
impl Default for ClusterDbRevisionsMessage
Source§fn default() -> ClusterDbRevisionsMessage
fn default() -> ClusterDbRevisionsMessage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ClusterDbRevisionsMessage
Auto Trait Implementations§
impl Freeze for ClusterDbRevisionsMessage
impl RefUnwindSafe for ClusterDbRevisionsMessage
impl Send for ClusterDbRevisionsMessage
impl Sync for ClusterDbRevisionsMessage
impl Unpin for ClusterDbRevisionsMessage
impl UnwindSafe for ClusterDbRevisionsMessage
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