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