pub struct GitUrl {
pub scheme: String,
pub host: String,
pub path: String,
pub owner: Option<String>,
pub repo: Option<String>,
}Expand description
Parsed Git URL information.
Fields§
§scheme: String§host: String§path: String§owner: Option<String>§repo: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for GitUrl
impl RefUnwindSafe for GitUrl
impl Send for GitUrl
impl Sync for GitUrl
impl Unpin for GitUrl
impl UnwindSafe for GitUrl
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