pub struct CabalParser;Expand description
Parser for *.cabal files.
Since cabal files use non-standard filenames (e.g. mypkg.cabal), this
parser is not registered in parse_manifest() by filename. Use
parse_manifest_by_extension("cabal", content) or call CabalParser directly.
Trait Implementations§
Source§impl ManifestParser for CabalParser
impl ManifestParser for CabalParser
Auto Trait Implementations§
impl Freeze for CabalParser
impl RefUnwindSafe for CabalParser
impl Send for CabalParser
impl Sync for CabalParser
impl Unpin for CabalParser
impl UnsafeUnpin for CabalParser
impl UnwindSafe for CabalParser
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