Skip to main content

IntoComposeInput

Trait IntoComposeInput 

pub trait IntoComposeInput:
    Send
    + Sync
    + Unpin {
    // Required method
    fn into_compose_input(self) -> (String, ComposeSourceOptions);
}
Expand description

Converts a value into an owned source path and its composition options.

Required Methods§

fn into_compose_input(self) -> (String, ComposeSourceOptions)

Convert self into a source path and options.

Implementations on Foreign Types§

§

impl IntoComposeInput for &str

§

impl IntoComposeInput for String

§

impl<P> IntoComposeInput for (P, ComposeSourceOptions)
where P: Into<String> + Send + Sync + Unpin,

Implementors§