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