Skip to main content

IMsgFileMethods

Trait IMsgFileMethods 

Source
pub trait IMsgFileMethods: IMsgFile {
    // Provided methods
    fn get_reference(self) -> i32 { ... }
    fn set_reference(self, refernce: impl Into<i32>) { ... }
    fn inc_reference(self) { ... }
    fn dec_reference(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_reference(self) -> i32

GetReference() overload

Source

fn set_reference(self, refernce: impl Into<i32>)

SetReference(i32) overload

Source

fn inc_reference(self)

IncReference() overload

Source

fn dec_reference(self)

DecReference() 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: IMsgFile> IMsgFileMethods for __T

Available on crate feature app-msgfile only.