pub struct CreateProjectParams {
pub project: ProjectReq,
pub x_request_id: Option<String>,
pub x_resource_name_in_location: Option<bool>,
}Expand description
struct for passing parameters to the method create_project
Fields§
§project: ProjectReqNew created project.
x_request_id: Option<String>An unique ID for the request
x_resource_name_in_location: Option<bool>The flag to indicate whether to return the name of the resource in Location. When X-Resource-Name-In-Location is true, the Location will return the name of the resource.
Trait Implementations§
Source§impl Clone for CreateProjectParams
impl Clone for CreateProjectParams
Source§fn clone(&self) -> CreateProjectParams
fn clone(&self) -> CreateProjectParams
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 moreAuto Trait Implementations§
impl Freeze for CreateProjectParams
impl RefUnwindSafe for CreateProjectParams
impl Send for CreateProjectParams
impl Sync for CreateProjectParams
impl Unpin for CreateProjectParams
impl UnwindSafe for CreateProjectParams
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