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