pub struct DeleteProjectParams {
pub project_id_or_key: String,
pub enable_undo: Option<bool>,
}
Expand description
struct for passing parameters to the method delete_project
Fields§
§project_id_or_key: String
The project ID or project key (case sensitive).
enable_undo: Option<bool>
Whether this project is placed in the Jira recycle bin where it will be available for restoration.
Trait Implementations§
Source§impl Clone for DeleteProjectParams
impl Clone for DeleteProjectParams
Source§fn clone(&self) -> DeleteProjectParams
fn clone(&self) -> DeleteProjectParams
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 DeleteProjectParams
impl RefUnwindSafe for DeleteProjectParams
impl Send for DeleteProjectParams
impl Sync for DeleteProjectParams
impl Unpin for DeleteProjectParams
impl UnwindSafe for DeleteProjectParams
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