pub struct DeleteComponentParams {
pub id: String,
pub move_issues_to: Option<String>,
}Expand description
struct for passing parameters to the method delete_component
Fields§
§id: StringThe ID of the component.
move_issues_to: Option<String>The ID of the component to replace the deleted component. If this value is null no replacement is made.
Trait Implementations§
Source§impl Clone for DeleteComponentParams
impl Clone for DeleteComponentParams
Source§fn clone(&self) -> DeleteComponentParams
fn clone(&self) -> DeleteComponentParams
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 DeleteComponentParams
impl Debug for DeleteComponentParams
Source§impl Default for DeleteComponentParams
impl Default for DeleteComponentParams
Source§fn default() -> DeleteComponentParams
fn default() -> DeleteComponentParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeleteComponentParams
impl RefUnwindSafe for DeleteComponentParams
impl Send for DeleteComponentParams
impl Sync for DeleteComponentParams
impl Unpin for DeleteComponentParams
impl UnwindSafe for DeleteComponentParams
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