pub struct GetParametersOutput {
pub parameters: Vec<Parameter>,
pub invalid_parameters: Vec<String>,
}Expand description
Output for the GetParameters operation.
Fields§
§parameters: Vec<Parameter>The parameters that were found.
invalid_parameters: Vec<String>The names of parameters that could not be found.
Trait Implementations§
Source§impl Clone for GetParametersOutput
impl Clone for GetParametersOutput
Source§fn clone(&self) -> GetParametersOutput
fn clone(&self) -> GetParametersOutput
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 GetParametersOutput
impl Debug for GetParametersOutput
Source§impl Default for GetParametersOutput
impl Default for GetParametersOutput
Source§fn default() -> GetParametersOutput
fn default() -> GetParametersOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetParametersOutput
impl<'de> Deserialize<'de> for GetParametersOutput
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
Auto Trait Implementations§
impl Freeze for GetParametersOutput
impl RefUnwindSafe for GetParametersOutput
impl Send for GetParametersOutput
impl Sync for GetParametersOutput
impl Unpin for GetParametersOutput
impl UnsafeUnpin for GetParametersOutput
impl UnwindSafe for GetParametersOutput
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