Trait jumpy::prelude::kira::sound::IntoOptionalRegion

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§

fn into_optional_region(self) -> Option<Region>

Converts the type into an Option<Region>.

Implementations on Foreign Types§

§

impl IntoOptionalRegion for Option<Region>

Implementors§

§

impl<T> IntoOptionalRegion for T
where T: Into<Region>,