pub trait IVersusViolationTopContentMethods: IVersusViolationTopContent {
// Provided methods
fn start(self) { ... }
fn set_capture(self, tex: impl Into<Texture2D>) { ... }
fn set_category_text(self, text: impl Into<Il2CppString>) { ... }
fn set_reason_text(self, text: impl Into<Il2CppString>) { ... }
fn hide_category(self) { ... }
fn show_category(self) { ... }
fn hide_reason(self) { ... }
fn show_reason(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_capture(self, tex: impl Into<Texture2D>)
fn set_capture(self, tex: impl Into<Texture2D>)
SetCapture(crate::unity_engine::texture2d::Texture2D) overload
Sourcefn set_category_text(self, text: impl Into<Il2CppString>)
fn set_category_text(self, text: impl Into<Il2CppString>)
SetCategoryText(::unity::Il2CppString) overload
Sourcefn set_reason_text(self, text: impl Into<Il2CppString>)
fn set_reason_text(self, text: impl Into<Il2CppString>)
SetReasonText(::unity::Il2CppString) overload
Sourcefn hide_category(self)
fn hide_category(self)
HideCategory() overload
Sourcefn show_category(self)
fn show_category(self)
ShowCategory() overload
Sourcefn hide_reason(self)
fn hide_reason(self)
HideReason() overload
Sourcefn show_reason(self)
fn show_reason(self)
ShowReason() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IVersusViolationTopContent> IVersusViolationTopContentMethods for __T
Available on crate feature
app-versusviolationtopcontent only.