pub enum SharedMetaProperty {
Description(PackageDescription),
Url(Url),
License(License),
Architecture(Architecture),
Changelog(RelativePath),
Install(RelativePath),
Group(String),
Option(MakepkgOption),
Backup(RelativePath),
}
Expand description
Metadata properties that may be shared between pkgbase
and pkgname
sections in SRCINFO data.
Variants§
Description(PackageDescription)
Url(Url)
License(License)
Architecture(Architecture)
Changelog(RelativePath)
Install(RelativePath)
Group(String)
Option(MakepkgOption)
Backup(RelativePath)
Implementations§
Sourcefn parser(input: &mut &str) -> ModalResult<SharedMetaProperty>
fn parser(input: &mut &str) -> ModalResult<SharedMetaProperty>
Recognizes keyword assignments that may be present in both pkgbase
and pkgname
sections
of SRCINFO data.
This function relies on Self::keyword_parser
to recognize the relevant keywords.
This function backtracks in case no keyword in this group matches.
Sourcefn keyword_parser(input: &mut &str) -> ModalResult<SharedMetaKeyword>
fn keyword_parser(input: &mut &str) -> ModalResult<SharedMetaKeyword>
Recognizes a SharedMetaKeyword
in a string slice.
Trait Implementations§
Auto Trait Implementations§
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