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>

Object Safety§

This trait is not object safe.

Implementors§