pub struct UpdateServerEngineAttributesRequest {
pub attribute_name: String,
pub attribute_value: Option<String>,
pub server_name: String,
}Fields§
§attribute_name: StringThe name of the engine attribute to update.
attribute_value: Option<String>The value to set for the attribute.
server_name: StringThe name of the server to update.
Trait Implementations§
Source§impl Clone for UpdateServerEngineAttributesRequest
impl Clone for UpdateServerEngineAttributesRequest
Source§fn clone(&self) -> UpdateServerEngineAttributesRequest
fn clone(&self) -> UpdateServerEngineAttributesRequest
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 Default for UpdateServerEngineAttributesRequest
impl Default for UpdateServerEngineAttributesRequest
Source§fn default() -> UpdateServerEngineAttributesRequest
fn default() -> UpdateServerEngineAttributesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateServerEngineAttributesRequest
impl PartialEq for UpdateServerEngineAttributesRequest
Source§fn eq(&self, other: &UpdateServerEngineAttributesRequest) -> bool
fn eq(&self, other: &UpdateServerEngineAttributesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateServerEngineAttributesRequest
Auto Trait Implementations§
impl Freeze for UpdateServerEngineAttributesRequest
impl RefUnwindSafe for UpdateServerEngineAttributesRequest
impl Send for UpdateServerEngineAttributesRequest
impl Sync for UpdateServerEngineAttributesRequest
impl Unpin for UpdateServerEngineAttributesRequest
impl UnwindSafe for UpdateServerEngineAttributesRequest
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