pub struct Vst3ScopeDecision {
pub native_export_blocker: String,
pub hosting: Vst3HostingDecision,
pub hosting_reason: String,
pub sdk_requirements: Vec<String>,
}Expand description
A record of what VST3 support is and is not in scope for this crate.
Documents why native .vst3 export and hosting are not yet provided and
what would be required to enable them.
Fields§
§native_export_blocker: StringThe reason native bundle export is unavailable; empty when supported.
hosting: Vst3HostingDecisionThe current native-hosting decision.
hosting_reason: StringThe rationale behind the hosting decision.
sdk_requirements: Vec<String>The external SDK and tooling requirements native support would need.
Implementations§
Source§impl Vst3ScopeDecision
impl Vst3ScopeDecision
Sourcepub fn native_export_supported(&self) -> bool
pub fn native_export_supported(&self) -> bool
Returns true when native bundle export is supported (no blocker set).
Trait Implementations§
Source§impl Clone for Vst3ScopeDecision
impl Clone for Vst3ScopeDecision
Source§fn clone(&self) -> Vst3ScopeDecision
fn clone(&self) -> Vst3ScopeDecision
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Vst3ScopeDecision
impl Debug for Vst3ScopeDecision
impl Eq for Vst3ScopeDecision
Source§impl PartialEq for Vst3ScopeDecision
impl PartialEq for Vst3ScopeDecision
Source§fn eq(&self, other: &Vst3ScopeDecision) -> bool
fn eq(&self, other: &Vst3ScopeDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Vst3ScopeDecision
Auto Trait Implementations§
impl Freeze for Vst3ScopeDecision
impl RefUnwindSafe for Vst3ScopeDecision
impl Send for Vst3ScopeDecision
impl Sync for Vst3ScopeDecision
impl Unpin for Vst3ScopeDecision
impl UnsafeUnpin for Vst3ScopeDecision
impl UnwindSafe for Vst3ScopeDecision
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more