pub struct ServiceUpdateRequestBody {
pub service_id: String,
pub plan_id: Option<String>,
pub context: Option<HashMap<String, String>>,
pub parameters: Option<HashMap<String, String>>,
pub previous_values: Option<PreviousValues>,
pub maintenance_info: Option<MaintenanceInfo>,
}Fields§
§service_id: String§plan_id: Option<String>§context: Option<HashMap<String, String>>§parameters: Option<HashMap<String, String>>§previous_values: Option<PreviousValues>§maintenance_info: Option<MaintenanceInfo>Trait Implementations§
Source§impl Debug for ServiceUpdateRequestBody
impl Debug for ServiceUpdateRequestBody
Source§impl<'de> Deserialize<'de> for ServiceUpdateRequestBody
impl<'de> Deserialize<'de> for ServiceUpdateRequestBody
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ServiceUpdateRequestBody
impl RefUnwindSafe for ServiceUpdateRequestBody
impl Send for ServiceUpdateRequestBody
impl Sync for ServiceUpdateRequestBody
impl Unpin for ServiceUpdateRequestBody
impl UnsafeUnpin for ServiceUpdateRequestBody
impl UnwindSafe for ServiceUpdateRequestBody
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