enum VcsProtocol {
Bzr,
Fossil,
Git,
Hg,
Svn,
}
Expand description
A VCS protocol
This identifier is only used during parsing to have some static representation of the detected VCS. This is necessary as the fragment and the query are parsed at a later step and we have to keep track of the VCS somehow.
Variants§
Implementations§
Source§impl VcsProtocol
impl VcsProtocol
Sourcefn parser(input: &mut &str) -> ModalResult<VcsProtocol>
fn parser(input: &mut &str) -> ModalResult<VcsProtocol>
Parses the start of an alpm-package-source string to determine the VCS protocol in use.
VCS protocol information is used in SourceUrl
s and can be detected in the following
ways:
- An explicit VCS protocol identifier, followed by a literal
+
. E.g.git+https://...
,svn+https://...
- Some VCS (i.e. git and svn) support URLs in which their protocol type is exposed in the
scheme
component of the URL itself:git://...
svn://...
Trait Implementations§
Source§impl Display for VcsProtocol
impl Display for VcsProtocol
Source§impl FromStr for VcsProtocol
impl FromStr for VcsProtocol
Auto Trait Implementations§
impl Freeze for VcsProtocol
impl RefUnwindSafe for VcsProtocol
impl Send for VcsProtocol
impl Sync for VcsProtocol
impl Unpin for VcsProtocol
impl UnwindSafe for VcsProtocol
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