pub struct RawPackageBase {
pub name: Name,
pub properties: Vec<PackageBaseProperty>,
}
Expand description
The parsed contents of a pkgbase
section in SRCINFO data.
Fields§
§name: Name
§properties: Vec<PackageBaseProperty>
Implementations§
Source§impl RawPackageBase
impl RawPackageBase
Sourcefn parser(input: &mut &str) -> ModalResult<RawPackageBase>
fn parser(input: &mut &str) -> ModalResult<RawPackageBase>
Recognizes the entire pkgbase
section in SRCINFO data.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawPackageBase
impl RefUnwindSafe for RawPackageBase
impl !Send for RawPackageBase
impl !Sync for RawPackageBase
impl Unpin for RawPackageBase
impl UnwindSafe for RawPackageBase
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