pub type SceneRenderError = MotionLoomSceneRenderError;Aliased Type§
pub enum SceneRenderError {
Show 26 variants
EmptyScene,
ReadTime {
source: SystemTimeError,
},
CreateOutputDir {
path: PathBuf,
source: Error,
},
StartFfmpeg {
source: Error,
},
MissingFfmpegStdin,
WriteFrame {
source: Error,
stderr: String,
},
WaitFfmpeg {
source: Error,
},
FfmpegFailed {
stderr: String,
},
SavePngFrame {
path: PathBuf,
source: ImageError,
},
InvalidColor {
value: String,
},
InvalidPaint {
value: String,
message: String,
},
InvalidExpression {
expr: String,
message: String,
},
InvalidPathData {
value: String,
message: String,
},
InvalidDeformGrid {
value: String,
message: String,
},
OpenImage {
path: PathBuf,
source: ImageError,
},
FetchAsset {
url: String,
message: String,
},
DecodeImage {
source_ref: String,
source: ImageError,
},
ReadSvg {
path: PathBuf,
source: Error,
},
ParseSvg {
source_ref: String,
source: Error,
},
RenderSvg {
source_ref: String,
},
InvalidImageDataUri {
source_ref: String,
message: String,
},
InvalidSvgDataUri {
source_ref: String,
message: String,
},
GpuRender {
message: String,
},
WorldSource {
message: String,
},
VideoExportNotAvailable {
message: String,
},
Cancelled,
}Variants§
EmptyScene
ReadTime
Fields
§
source: SystemTimeError