Enum surgeshaper_asym::imports::MaybeOwningTablesHandle [−][src]
pub enum MaybeOwningTablesHandle {
Owning(SurgeTables),
NonOwning(TablesHandle),
}
Expand description
| We use this struct because any entity which | may share a handle to SurgeTables may also own | it as a standalone unit
Variants
Owning(SurgeTables)
Tuple Fields of Owning
0: SurgeTables
NonOwning(TablesHandle)
Tuple Fields of NonOwning
0: TablesHandle
Trait Implementations
pub fn clipscale(
&self,
__enum_dispatch_arg_0: f32,
__enum_dispatch_arg_1: FilterSubType
) -> f32
Performs the conversion.
Performs the conversion.
pub fn lookup_waveshape_warp(
&self,
__enum_dispatch_arg_0: i32,
__enum_dispatch_arg_1: f32
) -> f32
pub fn try_into(
self
) -> Result<SurgeTables, <MaybeOwningTablesHandle as TryInto<SurgeTables>>::Error>
pub fn try_into(
self
) -> Result<SurgeTables, <MaybeOwningTablesHandle as TryInto<SurgeTables>>::Error>
Performs the conversion.
pub fn try_into(
self
) -> Result<TablesHandle, <MaybeOwningTablesHandle as TryInto<TablesHandle>>::Error>
pub fn try_into(
self
) -> Result<TablesHandle, <MaybeOwningTablesHandle as TryInto<TablesHandle>>::Error>
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for MaybeOwningTablesHandle
impl !Send for MaybeOwningTablesHandle
impl !Sync for MaybeOwningTablesHandle
impl Unpin for MaybeOwningTablesHandle
impl !UnwindSafe for MaybeOwningTablesHandle
Blanket Implementations
Mutably borrows from an owned value. Read more