pub struct SatParser;Expand description
Parser for ACIS SAT text format.
Implementations§
Source§impl SatParser
impl SatParser
Sourcepub fn parse(text: &str) -> Result<SatDocument, SatParseError>
pub fn parse(text: &str) -> Result<SatDocument, SatParseError>
Parse SAT text into a SatDocument.
This handles both legacy (pre-7.0) and modern (7.0+) SAT formats.
Auto Trait Implementations§
impl Freeze for SatParser
impl RefUnwindSafe for SatParser
impl Send for SatParser
impl Sync for SatParser
impl Unpin for SatParser
impl UnsafeUnpin for SatParser
impl UnwindSafe for SatParser
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