Trait RuneArgs

Source
pub trait RuneArgs:
    Args
    + Clone
    + Send
    + Sync
    + 'static { }
Expand description

Super trait adding additional bounds to Rune’s Args trait. It’s gets automatically implemented for any type that implments Args, so you should never have to manually implement it.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: Args + Clone + Send + Sync + 'static> RuneArgs for T