pub trait IProfileCardStampListMenuItemContentMethods: IProfileCardStampListMenuItemContent {
// Provided methods
fn set_stamp_image(self, stamp_data: impl Into<ProfileCardStampData>) { ... }
fn set_stamp_color(self, color: impl Into<Color>) { ... }
fn set_new_icon_active(self, active: impl Into<bool>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_stamp_image(self, stamp_data: impl Into<ProfileCardStampData>)
fn set_stamp_image(self, stamp_data: impl Into<ProfileCardStampData>)
SetStampImage(crate::app::profilecardstampdata::ProfileCardStampData) overload
Sourcefn set_stamp_color(self, color: impl Into<Color>)
fn set_stamp_color(self, color: impl Into<Color>)
SetStampColor(crate::unity_engine::color::Color) overload
Sourcefn set_new_icon_active(self, active: impl Into<bool>)
fn set_new_icon_active(self, active: impl Into<bool>)
SetNewIconActive(bool) 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: IProfileCardStampListMenuItemContent> IProfileCardStampListMenuItemContentMethods for __T
Available on crate feature
app-profilecardstamplistmenuitemcontent only.