pub struct DBEngineVersionMessage {
pub db_engine_versions: Option<Vec<DBEngineVersion>>,
pub marker: Option<String>,
}
Expand description
Contains the result of a successful invocation of the DescribeDBEngineVersions
action.
Fields§
§db_engine_versions: Option<Vec<DBEngineVersion>>
A list of DBEngineVersion
elements.
marker: Option<String>
An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
Trait Implementations§
Source§impl Clone for DBEngineVersionMessage
impl Clone for DBEngineVersionMessage
Source§fn clone(&self) -> DBEngineVersionMessage
fn clone(&self) -> DBEngineVersionMessage
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 DBEngineVersionMessage
impl Debug for DBEngineVersionMessage
Source§impl Default for DBEngineVersionMessage
impl Default for DBEngineVersionMessage
Source§fn default() -> DBEngineVersionMessage
fn default() -> DBEngineVersionMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DBEngineVersionMessage
impl PartialEq for DBEngineVersionMessage
impl StructuralPartialEq for DBEngineVersionMessage
Auto Trait Implementations§
impl Freeze for DBEngineVersionMessage
impl RefUnwindSafe for DBEngineVersionMessage
impl Send for DBEngineVersionMessage
impl Sync for DBEngineVersionMessage
impl Unpin for DBEngineVersionMessage
impl UnwindSafe for DBEngineVersionMessage
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