Skip to main content

Arguments

Trait Arguments 

Source
pub trait Arguments:
    Send
    + Sync
    + 'static { }
Expand description

Function arguments.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> Arguments for T
where T: Send + Sync + 'static,