pub struct ExportOutcome {
pub destination: Utf8PathBuf,
pub branch: String,
pub instance: String,
pub source_head: String,
pub commit: String,
pub plan: ExportPlan,
}Fields§
§destination: Utf8PathBuf§branch: StringBranch name in the exported repository (the instance’s source ref).
instance: String§source_head: StringWorkspace HEAD the export was taken from.
commit: StringThe single commit the export produced.
plan: ExportPlanTrait Implementations§
Source§impl Clone for ExportOutcome
impl Clone for ExportOutcome
Source§fn clone(&self) -> ExportOutcome
fn clone(&self) -> ExportOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExportOutcome
impl Debug for ExportOutcome
impl Eq for ExportOutcome
Source§impl PartialEq for ExportOutcome
impl PartialEq for ExportOutcome
impl StructuralPartialEq for ExportOutcome
Auto Trait Implementations§
impl Freeze for ExportOutcome
impl RefUnwindSafe for ExportOutcome
impl Send for ExportOutcome
impl Sync for ExportOutcome
impl Unpin for ExportOutcome
impl UnsafeUnpin for ExportOutcome
impl UnwindSafe for ExportOutcome
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