pub enum EngineSettingValueV2 {
Boolean(bool),
PositiveInteger(u32),
BakeOrExtract(EngineBakeOrExtractV1),
SourceTransformPath(String),
TextList(Vec<String>),
Token(String),
SampleRate(EngineSampleRateV2),
}Expand description
Closed materialized setting values.
Variants§
Boolean(bool)
Boolean value.
PositiveInteger(u32)
Positive integer value.
BakeOrExtract(EngineBakeOrExtractV1)
Bake/extract value.
SourceTransformPath(String)
Exact case-sensitive source path.
TextList(Vec<String>)
Ordered bounded text list.
Token(String)
Closed semantic token.
SampleRate(EngineSampleRateV2)
Unreal sample-rate policy.
Trait Implementations§
Source§impl Clone for EngineSettingValueV2
impl Clone for EngineSettingValueV2
Source§fn clone(&self) -> EngineSettingValueV2
fn clone(&self) -> EngineSettingValueV2
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 EngineSettingValueV2
impl Debug for EngineSettingValueV2
Source§impl<'de> Deserialize<'de> for EngineSettingValueV2
impl<'de> Deserialize<'de> for EngineSettingValueV2
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for EngineSettingValueV2
Source§impl Ord for EngineSettingValueV2
impl Ord for EngineSettingValueV2
Source§fn cmp(&self, other: &EngineSettingValueV2) -> Ordering
fn cmp(&self, other: &EngineSettingValueV2) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EngineSettingValueV2
impl PartialEq for EngineSettingValueV2
Source§impl PartialOrd for EngineSettingValueV2
impl PartialOrd for EngineSettingValueV2
Source§impl Serialize for EngineSettingValueV2
impl Serialize for EngineSettingValueV2
impl StructuralPartialEq for EngineSettingValueV2
Auto Trait Implementations§
impl Freeze for EngineSettingValueV2
impl RefUnwindSafe for EngineSettingValueV2
impl Send for EngineSettingValueV2
impl Sync for EngineSettingValueV2
impl Unpin for EngineSettingValueV2
impl UnsafeUnpin for EngineSettingValueV2
impl UnwindSafe for EngineSettingValueV2
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