pub struct CreateLocationRequest {
pub location: Location,
}
Expand description
This is a model struct for CreateLocationRequest type
Fields§
§location: Location
The initial values of the location being created. The name field is required and must be unique within a seller account. All other fields are optional, but any information you care about for the location should be included. The remaining fields are automatically added based on the data from the main location.
Trait Implementations§
Source§impl Clone for CreateLocationRequest
impl Clone for CreateLocationRequest
Source§fn clone(&self) -> CreateLocationRequest
fn clone(&self) -> CreateLocationRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreateLocationRequest
impl Debug for CreateLocationRequest
Source§impl Default for CreateLocationRequest
impl Default for CreateLocationRequest
Source§fn default() -> CreateLocationRequest
fn default() -> CreateLocationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateLocationRequest
impl PartialEq for CreateLocationRequest
Source§impl Serialize for CreateLocationRequest
impl Serialize for CreateLocationRequest
impl StructuralPartialEq for CreateLocationRequest
Auto Trait Implementations§
impl Freeze for CreateLocationRequest
impl RefUnwindSafe for CreateLocationRequest
impl Send for CreateLocationRequest
impl Sync for CreateLocationRequest
impl Unpin for CreateLocationRequest
impl UnwindSafe for CreateLocationRequest
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