#[non_exhaustive]pub struct GetEngineConfigRequest {
pub name: String,
/* private fields */
}Expand description
Request for retrieving a specific EngineConfig resource.
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 of the EngineConfig
Implementations§
Trait Implementations§
Source§impl Clone for GetEngineConfigRequest
impl Clone for GetEngineConfigRequest
Source§fn clone(&self) -> GetEngineConfigRequest
fn clone(&self) -> GetEngineConfigRequest
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 GetEngineConfigRequest
impl Debug for GetEngineConfigRequest
Source§impl Default for GetEngineConfigRequest
impl Default for GetEngineConfigRequest
Source§fn default() -> GetEngineConfigRequest
fn default() -> GetEngineConfigRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetEngineConfigRequest
impl Message for GetEngineConfigRequest
Source§impl PartialEq for GetEngineConfigRequest
impl PartialEq for GetEngineConfigRequest
Source§fn eq(&self, other: &GetEngineConfigRequest) -> bool
fn eq(&self, other: &GetEngineConfigRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetEngineConfigRequest
Auto Trait Implementations§
impl Freeze for GetEngineConfigRequest
impl RefUnwindSafe for GetEngineConfigRequest
impl Send for GetEngineConfigRequest
impl Sync for GetEngineConfigRequest
impl Unpin for GetEngineConfigRequest
impl UnsafeUnpin for GetEngineConfigRequest
impl UnwindSafe for GetEngineConfigRequest
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