pub struct BookingSplitResponse {
pub warnings: Option<Box<WarningCollection>>,
pub problems: Option<Vec<Problem>>,
pub booking_split_result: Option<Box<BookingSplitResult>>,
}Fields§
§warnings: Option<Box<WarningCollection>>§problems: Option<Vec<Problem>>§booking_split_result: Option<Box<BookingSplitResult>>Implementations§
Source§impl BookingSplitResponse
impl BookingSplitResponse
pub fn new() -> BookingSplitResponse
Trait Implementations§
Source§impl Clone for BookingSplitResponse
impl Clone for BookingSplitResponse
Source§fn clone(&self) -> BookingSplitResponse
fn clone(&self) -> BookingSplitResponse
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 BookingSplitResponse
impl Debug for BookingSplitResponse
Source§impl Default for BookingSplitResponse
impl Default for BookingSplitResponse
Source§fn default() -> BookingSplitResponse
fn default() -> BookingSplitResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BookingSplitResponse
impl<'de> Deserialize<'de> for BookingSplitResponse
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 PartialEq for BookingSplitResponse
impl PartialEq for BookingSplitResponse
Source§impl Serialize for BookingSplitResponse
impl Serialize for BookingSplitResponse
impl StructuralPartialEq for BookingSplitResponse
Auto Trait Implementations§
impl Freeze for BookingSplitResponse
impl RefUnwindSafe for BookingSplitResponse
impl Send for BookingSplitResponse
impl Sync for BookingSplitResponse
impl Unpin for BookingSplitResponse
impl UnwindSafe for BookingSplitResponse
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