pub struct TreeImportOptions {
pub parent_id: Option<String>,
pub conflict_strategy: ConflictStrategy,
pub created_by: Option<String>,
}Expand description
Options for importing a tree
Fields§
§parent_id: Option<String>Parent requirement to attach the imported tree under
conflict_strategy: ConflictStrategyHow to handle conflicts (by title)
created_by: Option<String>Created by field for imported requirements
Trait Implementations§
Source§impl Clone for TreeImportOptions
impl Clone for TreeImportOptions
Source§fn clone(&self) -> TreeImportOptions
fn clone(&self) -> TreeImportOptions
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 TreeImportOptions
impl Debug for TreeImportOptions
Source§impl Default for TreeImportOptions
impl Default for TreeImportOptions
Source§fn default() -> TreeImportOptions
fn default() -> TreeImportOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TreeImportOptions
impl RefUnwindSafe for TreeImportOptions
impl Send for TreeImportOptions
impl Sync for TreeImportOptions
impl Unpin for TreeImportOptions
impl UnsafeUnpin for TreeImportOptions
impl UnwindSafe for TreeImportOptions
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