pub struct DefaultRenderingEngine { /* private fields */ }Expand description
Default rendering engine implementation
Implementations§
Trait Implementations§
Source§impl Default for DefaultRenderingEngine
impl Default for DefaultRenderingEngine
Source§impl RenderingEngine for DefaultRenderingEngine
impl RenderingEngine for DefaultRenderingEngine
Source§fn render(
&self,
_graph: &PipelineGraph,
_config: &VisualizationConfig,
) -> SklResult<RenderedOutput>
fn render( &self, _graph: &PipelineGraph, _config: &VisualizationConfig, ) -> SklResult<RenderedOutput>
Render the pipeline graph
Source§fn supported_formats(&self) -> Vec<ExportFormat>
fn supported_formats(&self) -> Vec<ExportFormat>
Get supported export formats
Source§fn set_options(&mut self, options: RenderingOptions)
fn set_options(&mut self, options: RenderingOptions)
Set rendering options
Auto Trait Implementations§
impl Freeze for DefaultRenderingEngine
impl RefUnwindSafe for DefaultRenderingEngine
impl Send for DefaultRenderingEngine
impl Sync for DefaultRenderingEngine
impl Unpin for DefaultRenderingEngine
impl UnwindSafe for DefaultRenderingEngine
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more