SetObject

Trait SetObject 

Source
pub trait SetObject: Object {
    type SetArguments: Default;

    // Required methods
    fn new(create_id: Option<usize>) -> Self;
    fn create_id(&self) -> Option<String>;
}

Required Associated Types§

Required Methods§

Source

fn new(create_id: Option<usize>) -> Self

Source

fn create_id(&self) -> Option<String>

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§