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 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 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 Freeze for UpdateServiceParams
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