pub struct SurveyHandoff {
pub path: PathBuf,
pub repo_root: PathBuf,
pub project_name: String,
pub branch: Option<String>,
pub build: Option<String>,
pub tests: Option<String>,
pub items: Vec<HandoffItem>,
}Fields§
§path: PathBuf§repo_root: PathBuf§project_name: String§branch: Option<String>§build: Option<String>§tests: Option<String>§items: Vec<HandoffItem>Trait Implementations§
Source§impl Clone for SurveyHandoff
impl Clone for SurveyHandoff
Source§fn clone(&self) -> SurveyHandoff
fn clone(&self) -> SurveyHandoff
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 SurveyHandoff
impl RefUnwindSafe for SurveyHandoff
impl Send for SurveyHandoff
impl Sync for SurveyHandoff
impl Unpin for SurveyHandoff
impl UnsafeUnpin for SurveyHandoff
impl UnwindSafe for SurveyHandoff
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