pub struct ParsedVcs {
pub repo_url: String,
pub branch: Option<String>,
pub subpath: Option<String>,
}
Expand description
Parsed VCS information
Fields§
§repo_url: String
URL of the repository
branch: Option<String>
Name of the branch, if not the default branch
subpath: Option<String>
Subpath within the repository
Trait Implementations§
impl Eq for ParsedVcs
impl StructuralPartialEq for ParsedVcs
Auto Trait Implementations§
impl Freeze for ParsedVcs
impl RefUnwindSafe for ParsedVcs
impl Send for ParsedVcs
impl Sync for ParsedVcs
impl Unpin for ParsedVcs
impl UnwindSafe for ParsedVcs
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