pub trait IMoonSharpVisibleAttributeMethods: IMoonSharpVisibleAttribute {
// Provided methods
fn get_visible(self) -> bool { ... }
fn set_visible(self, value: impl Into<bool>) { ... }
fn ctor(self, visible: impl Into<bool>) { ... }
}Provided Methods§
Sourcefn get_visible(self) -> bool
fn get_visible(self) -> bool
get_Visible() overload
Sourcefn set_visible(self, value: impl Into<bool>)
fn set_visible(self, value: impl Into<bool>)
set_Visible(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: IMoonSharpVisibleAttribute> IMoonSharpVisibleAttributeMethods for __T
Available on crate feature
moon_sharp-interpreter-interop-moonsharpvisibleattribute only.