#[non_exhaustive]pub struct GetRuntimeVersionRequest {
pub name: String,
/* private fields */
}Expand description
Request for GetRuntimeVersion.
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. The resource name.
Implementations§
Trait Implementations§
Source§impl Clone for GetRuntimeVersionRequest
impl Clone for GetRuntimeVersionRequest
Source§fn clone(&self) -> GetRuntimeVersionRequest
fn clone(&self) -> GetRuntimeVersionRequest
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 GetRuntimeVersionRequest
impl Debug for GetRuntimeVersionRequest
Source§impl Default for GetRuntimeVersionRequest
impl Default for GetRuntimeVersionRequest
Source§fn default() -> GetRuntimeVersionRequest
fn default() -> GetRuntimeVersionRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetRuntimeVersionRequest
impl Message for GetRuntimeVersionRequest
Source§impl PartialEq for GetRuntimeVersionRequest
impl PartialEq for GetRuntimeVersionRequest
impl StructuralPartialEq for GetRuntimeVersionRequest
Auto Trait Implementations§
impl Freeze for GetRuntimeVersionRequest
impl RefUnwindSafe for GetRuntimeVersionRequest
impl Send for GetRuntimeVersionRequest
impl Sync for GetRuntimeVersionRequest
impl Unpin for GetRuntimeVersionRequest
impl UnsafeUnpin for GetRuntimeVersionRequest
impl UnwindSafe for GetRuntimeVersionRequest
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