Skip to main content

IBindHolderMethods

Trait IBindHolderMethods 

Source
pub trait IBindHolderMethods: IBindHolder {
    // Provided methods
    fn bind(self) -> bool { ... }
    fn unbind(self) -> bool { ... }
    fn is_bind(self) -> bool { ... }
    fn non_bind(self) -> bool { ... }
    fn reset(self) { ... }
    fn get_count(self) -> i32 { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn bind(self) -> bool

Bind() overload

Source

fn unbind(self) -> bool

Unbind() overload

Source

fn is_bind(self) -> bool

IsBind() overload

Source

fn non_bind(self) -> bool

NonBind() overload

Source

fn reset(self)

Reset() overload

Source

fn get_count(self) -> i32

get_Count() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IBindHolder> IBindHolderMethods for __T

Available on crate feature app-bindholder only.