Struct fastly_api::apis::service_api::UpdateServiceParams
source · pub struct UpdateServiceParams {
pub service_id: String,
pub comment: Option<String>,
pub name: Option<String>,
pub customer_id: Option<String>,
}
Expand description
struct for passing parameters to the method update_service
Fields§
§service_id: String
Alphanumeric string identifying the service.
comment: Option<String>
A freeform descriptive note.
name: Option<String>
The name of the service.
customer_id: Option<String>
Alphanumeric string identifying the customer.
Trait Implementations§
source§impl Clone for UpdateServiceParams
impl Clone for UpdateServiceParams
source§fn clone(&self) -> UpdateServiceParams
fn clone(&self) -> UpdateServiceParams
Returns a copy 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 UpdateServiceParams
impl Debug for UpdateServiceParams
source§impl Default for UpdateServiceParams
impl Default for UpdateServiceParams
source§fn default() -> UpdateServiceParams
fn default() -> UpdateServiceParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for UpdateServiceParams
impl Send for UpdateServiceParams
impl Sync for UpdateServiceParams
impl Unpin for UpdateServiceParams
impl UnwindSafe for UpdateServiceParams
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