Trait OperationProvider

Source
pub trait OperationProvider:
    DynClone
    + Debug
    + Sync
    + Send {
    // Required method
    fn to_operation(&mut self) -> String;
}
Expand description

对象操作提供者接口

Required Methods§

Source

fn to_operation(&mut self) -> String

转换为对象操作命令

Implementations on Foreign Types§

Source§

impl<'a, T: 'a + OperationProvider + ?Sized> OperationProvider for &'a mut T

Source§

fn to_operation(&mut self) -> String

Source§

impl<T: OperationProvider + ?Sized> OperationProvider for Box<T>
where Box<T>: DynClone + Debug + Sync + Send,

Source§

fn to_operation(&mut self) -> String

Implementors§