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