pub struct TransformEngine { /* private fields */ }Implementations§
Source§impl TransformEngine
impl TransformEngine
pub fn builder() -> TransformEngineBuilder
pub fn parser(&self) -> &Parser
pub fn transform( &self, document: &mut Document, ) -> Result<TransformReport, Error>
pub fn transform_with( &self, document: &mut Document, config: &TransformConfig, ) -> Result<TransformReport, Error>
pub fn normalize(&self, src: &str) -> Result<NormalizeResult, Error>
pub fn normalize_with( &self, src: &str, config: &NormalizeConfig, ) -> Result<NormalizeResult, Error>
pub fn default_transform_config(&self) -> &TransformConfig
Auto Trait Implementations§
impl !RefUnwindSafe for TransformEngine
impl !UnwindSafe for TransformEngine
impl Freeze for TransformEngine
impl Send for TransformEngine
impl Sync for TransformEngine
impl Unpin for TransformEngine
impl UnsafeUnpin for TransformEngine
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