#[non_exhaustive]pub struct GetParameterVersionRequest {
pub name: String,
pub view: View,
/* private fields */
}Expand description
Message for getting a ParameterVersion
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. Name of the resource in the format
projects/*/locations/*/parameters/*/versions/*.
view: ViewOptional. View of the ParameterVersion. In the default FULL view, all metadata & payload associated with the ParameterVersion will be returned.
Implementations§
Trait Implementations§
Source§impl Clone for GetParameterVersionRequest
impl Clone for GetParameterVersionRequest
Source§fn clone(&self) -> GetParameterVersionRequest
fn clone(&self) -> GetParameterVersionRequest
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 GetParameterVersionRequest
impl Debug for GetParameterVersionRequest
Source§impl Default for GetParameterVersionRequest
impl Default for GetParameterVersionRequest
Source§fn default() -> GetParameterVersionRequest
fn default() -> GetParameterVersionRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetParameterVersionRequest
impl Message for GetParameterVersionRequest
impl StructuralPartialEq for GetParameterVersionRequest
Auto Trait Implementations§
impl Freeze for GetParameterVersionRequest
impl RefUnwindSafe for GetParameterVersionRequest
impl Send for GetParameterVersionRequest
impl Sync for GetParameterVersionRequest
impl Unpin for GetParameterVersionRequest
impl UnwindSafe for GetParameterVersionRequest
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