pub struct UpdateAvailabilityRequest {
pub availabilities: Option<Vec<Availability>>,
}Expand description
The request to update availability.
§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 (request)
Fields§
§availabilities: Option<Vec<Availability>>The availabilities being requested.
Trait Implementations§
Source§impl Clone for UpdateAvailabilityRequest
impl Clone for UpdateAvailabilityRequest
Source§fn clone(&self) -> UpdateAvailabilityRequest
fn clone(&self) -> UpdateAvailabilityRequest
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 UpdateAvailabilityRequest
impl Debug for UpdateAvailabilityRequest
Source§impl Default for UpdateAvailabilityRequest
impl Default for UpdateAvailabilityRequest
Source§fn default() -> UpdateAvailabilityRequest
fn default() -> UpdateAvailabilityRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateAvailabilityRequest
impl<'de> Deserialize<'de> for UpdateAvailabilityRequest
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 RequestValue for UpdateAvailabilityRequest
Auto Trait Implementations§
impl Freeze for UpdateAvailabilityRequest
impl RefUnwindSafe for UpdateAvailabilityRequest
impl Send for UpdateAvailabilityRequest
impl Sync for UpdateAvailabilityRequest
impl Unpin for UpdateAvailabilityRequest
impl UnwindSafe for UpdateAvailabilityRequest
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