pub struct vtkXMLFileOutputWindow(/* private fields */);Expand description
XML File Specific output window class
Writes debug/warning/error output to an XML file. Uses prefined XML tags for each text display method. The text is processed to replace XML markup characters.
DisplayText - <Text>
DisplayErrorText - <Error>
DisplayWarningText - <Warning>
DisplayGenericWarningText - <GenericWarning>
DisplayDebugText - <Debug>
The method DisplayTag outputs the text unprocessed. To use this class, instantiate it and then call SetInstance(this).
Implementations§
Source§impl vtkXMLFileOutputWindow
impl vtkXMLFileOutputWindow
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkXMLFileOutputWindow wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkXMLFileOutputWindow
impl Default for vtkXMLFileOutputWindow
Auto Trait Implementations§
impl Freeze for vtkXMLFileOutputWindow
impl RefUnwindSafe for vtkXMLFileOutputWindow
impl !Send for vtkXMLFileOutputWindow
impl !Sync for vtkXMLFileOutputWindow
impl Unpin for vtkXMLFileOutputWindow
impl UnwindSafe for vtkXMLFileOutputWindow
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