pub struct ServiceUpdateResponse {
pub warnings: Option<Vec<String>>,
}Expand description
ServiceUpdateResponse service update response
Fields§
§warnings: Option<Vec<String>>Optional warning messages
Implementations§
Source§impl ServiceUpdateResponse
impl ServiceUpdateResponse
pub fn new() -> ServiceUpdateResponse
Trait Implementations§
Source§impl Clone for ServiceUpdateResponse
impl Clone for ServiceUpdateResponse
Source§fn clone(&self) -> ServiceUpdateResponse
fn clone(&self) -> ServiceUpdateResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ServiceUpdateResponse
impl Debug for ServiceUpdateResponse
Source§impl<'de> Deserialize<'de> for ServiceUpdateResponse
impl<'de> Deserialize<'de> for ServiceUpdateResponse
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
Source§impl FromStr for ServiceUpdateResponse
Converts Query Parameters representation (style=form, explode=false) to a ServiceUpdateResponse value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for ServiceUpdateResponse
Converts Query Parameters representation (style=form, explode=false) to a ServiceUpdateResponse value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl PartialEq for ServiceUpdateResponse
impl PartialEq for ServiceUpdateResponse
Source§fn eq(&self, other: &ServiceUpdateResponse) -> bool
fn eq(&self, other: &ServiceUpdateResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServiceUpdateResponse
impl Serialize for ServiceUpdateResponse
impl StructuralPartialEq for ServiceUpdateResponse
Source§impl ToString for ServiceUpdateResponse
Converts the ServiceUpdateResponse value to the Query Parameters representation (style=form, explode=false)
specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde serializer
impl ToString for ServiceUpdateResponse
Converts the ServiceUpdateResponse value to the Query Parameters representation (style=form, explode=false) specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde serializer
Source§impl Validate for ServiceUpdateResponse
impl Validate for ServiceUpdateResponse
Source§impl<'v_a> ValidateArgs<'v_a> for ServiceUpdateResponse
impl<'v_a> ValidateArgs<'v_a> for ServiceUpdateResponse
Auto Trait Implementations§
impl Freeze for ServiceUpdateResponse
impl RefUnwindSafe for ServiceUpdateResponse
impl Send for ServiceUpdateResponse
impl Sync for ServiceUpdateResponse
impl Unpin for ServiceUpdateResponse
impl UnsafeUnpin for ServiceUpdateResponse
impl UnwindSafe for ServiceUpdateResponse
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