pub struct DeletePoolServerParams {
pub service_id: String,
pub pool_id: String,
pub server_id: String,
}
Expand description
struct for passing parameters to the method delete_pool_server
Fields§
§service_id: String
Alphanumeric string identifying the service.
pool_id: String
Alphanumeric string identifying a Pool.
server_id: String
Alphanumeric string identifying a Server.
Trait Implementations§
Source§impl Clone for DeletePoolServerParams
impl Clone for DeletePoolServerParams
Source§fn clone(&self) -> DeletePoolServerParams
fn clone(&self) -> DeletePoolServerParams
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 DeletePoolServerParams
impl Debug for DeletePoolServerParams
Source§impl Default for DeletePoolServerParams
impl Default for DeletePoolServerParams
Source§fn default() -> DeletePoolServerParams
fn default() -> DeletePoolServerParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeletePoolServerParams
impl RefUnwindSafe for DeletePoolServerParams
impl Send for DeletePoolServerParams
impl Sync for DeletePoolServerParams
impl Unpin for DeletePoolServerParams
impl UnwindSafe for DeletePoolServerParams
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