pub struct CancelReservationResponse {
pub status: CancelReservationStatus,
}
Fields
status: CancelReservationStatus
Required. This indicates the success or failure of the cancelling of a reservation by Central System.
Trait Implementations
sourceimpl Clone for CancelReservationResponse
impl Clone for CancelReservationResponse
sourcefn clone(&self) -> CancelReservationResponse
fn clone(&self) -> CancelReservationResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CancelReservationResponse
impl Debug for CancelReservationResponse
sourceimpl<'de> Deserialize<'de> for CancelReservationResponse
impl<'de> Deserialize<'de> for CancelReservationResponse
sourcefn 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
sourceimpl PartialEq<CancelReservationResponse> for CancelReservationResponse
impl PartialEq<CancelReservationResponse> for CancelReservationResponse
sourcefn eq(&self, other: &CancelReservationResponse) -> bool
fn eq(&self, other: &CancelReservationResponse) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CancelReservationResponse) -> bool
fn ne(&self, other: &CancelReservationResponse) -> bool
This method tests for !=
.
sourceimpl Serialize for CancelReservationResponse
impl Serialize for CancelReservationResponse
impl StructuralPartialEq for CancelReservationResponse
Auto Trait Implementations
impl RefUnwindSafe for CancelReservationResponse
impl Send for CancelReservationResponse
impl Sync for CancelReservationResponse
impl Unpin for CancelReservationResponse
impl UnwindSafe for CancelReservationResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more