pub struct UpdateAvailabilityResponse {
pub availabilities: Option<Vec<Availability>>,
}Expand description
The response to a update availability request.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- update availability conversion (response)
Fields§
§availabilities: Option<Vec<Availability>>The availabilities being returned.
Trait Implementations§
Source§impl Clone for UpdateAvailabilityResponse
impl Clone for UpdateAvailabilityResponse
Source§fn clone(&self) -> UpdateAvailabilityResponse
fn clone(&self) -> UpdateAvailabilityResponse
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 UpdateAvailabilityResponse
impl Debug for UpdateAvailabilityResponse
Source§impl Default for UpdateAvailabilityResponse
impl Default for UpdateAvailabilityResponse
Source§fn default() -> UpdateAvailabilityResponse
fn default() -> UpdateAvailabilityResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateAvailabilityResponse
impl<'de> Deserialize<'de> for UpdateAvailabilityResponse
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
impl ResponseResult for UpdateAvailabilityResponse
Auto Trait Implementations§
impl Freeze for UpdateAvailabilityResponse
impl RefUnwindSafe for UpdateAvailabilityResponse
impl Send for UpdateAvailabilityResponse
impl Sync for UpdateAvailabilityResponse
impl Unpin for UpdateAvailabilityResponse
impl UnwindSafe for UpdateAvailabilityResponse
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