pub struct ListLocationBookingProfilesResponse {
pub location_booking_profiles: Option<Vec<LocationBookingProfile>>,
pub cursor: Option<String>,
pub errors: Option<Vec<Error>>,
}Expand description
This is a model struct for ListLocationBookingProfilesResponse type
Fields§
§location_booking_profiles: Option<Vec<LocationBookingProfile>>The list of a seller’s location booking profiles.
cursor: Option<String>The pagination cursor to be used in a subsequent request. If unset, this is the final response. Max Length 65536
See Pagination for more information.
errors: Option<Vec<Error>>Information about errors encountered during the request.
Trait Implementations§
Source§impl Clone for ListLocationBookingProfilesResponse
impl Clone for ListLocationBookingProfilesResponse
Source§fn clone(&self) -> ListLocationBookingProfilesResponse
fn clone(&self) -> ListLocationBookingProfilesResponse
Returns a copy 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<'de> Deserialize<'de> for ListLocationBookingProfilesResponse
impl<'de> Deserialize<'de> for ListLocationBookingProfilesResponse
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 ListLocationBookingProfilesResponse
impl PartialEq for ListLocationBookingProfilesResponse
Source§fn eq(&self, other: &ListLocationBookingProfilesResponse) -> bool
fn eq(&self, other: &ListLocationBookingProfilesResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ListLocationBookingProfilesResponse
impl StructuralPartialEq for ListLocationBookingProfilesResponse
Auto Trait Implementations§
impl Freeze for ListLocationBookingProfilesResponse
impl RefUnwindSafe for ListLocationBookingProfilesResponse
impl Send for ListLocationBookingProfilesResponse
impl Sync for ListLocationBookingProfilesResponse
impl Unpin for ListLocationBookingProfilesResponse
impl UnwindSafe for ListLocationBookingProfilesResponse
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