pub(crate) struct RuntimePropResolver {
pub(crate) script_dir: Option<PathBuf>,
pub(crate) logger: Logger,
pub(crate) worker_threads: usize,
}Fields§
§script_dir: Option<PathBuf>§logger: Logger§worker_threads: usizeImplementations§
Trait Implementations§
Source§impl Clone for RuntimePropResolver
impl Clone for RuntimePropResolver
Source§fn clone(&self) -> RuntimePropResolver
fn clone(&self) -> RuntimePropResolver
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ScriptPropResolver for RuntimePropResolver
impl ScriptPropResolver for RuntimePropResolver
Source§fn resolve_prop(
&self,
graph: Graph,
metadata_schema: MetadataSchema,
frame_number: usize,
key: &str,
) -> Result<MetadataValue>
fn resolve_prop( &self, graph: Graph, metadata_schema: MetadataSchema, frame_number: usize, key: &str, ) -> Result<MetadataValue>
Renders or otherwise inspects
graph and returns key from frame_number.Auto Trait Implementations§
impl Freeze for RuntimePropResolver
impl !RefUnwindSafe for RuntimePropResolver
impl Send for RuntimePropResolver
impl Sync for RuntimePropResolver
impl Unpin for RuntimePropResolver
impl !UnwindSafe for RuntimePropResolver
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