Trait kira::sound::IntoOptionalRegion

source ·
pub trait IntoOptionalRegion {
    // Required method
    fn into_optional_region(self) -> Option<Region>;
}
Expand description

A trait for types that can be converted into an Option<Region>.

Required Methods§

source

fn into_optional_region(self) -> Option<Region>

Converts the type into an Option<Region>.

Implementations on Foreign Types§

source§

impl IntoOptionalRegion for Option<Region>

Implementors§