pub struct DescribeParametersOutput {
pub parameters: Vec<ParameterMetadata>,
pub next_token: Option<String>,
}Expand description
Output for the DescribeParameters operation.
Fields§
§parameters: Vec<ParameterMetadata>The parameter metadata entries.
next_token: Option<String>The token for the next page of results, if any.
Trait Implementations§
Source§impl Clone for DescribeParametersOutput
impl Clone for DescribeParametersOutput
Source§fn clone(&self) -> DescribeParametersOutput
fn clone(&self) -> DescribeParametersOutput
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 DescribeParametersOutput
impl Debug for DescribeParametersOutput
Source§impl Default for DescribeParametersOutput
impl Default for DescribeParametersOutput
Source§fn default() -> DescribeParametersOutput
fn default() -> DescribeParametersOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeParametersOutput
impl<'de> Deserialize<'de> for DescribeParametersOutput
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 DescribeParametersOutput
impl RefUnwindSafe for DescribeParametersOutput
impl Send for DescribeParametersOutput
impl Sync for DescribeParametersOutput
impl Unpin for DescribeParametersOutput
impl UnsafeUnpin for DescribeParametersOutput
impl UnwindSafe for DescribeParametersOutput
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