pub trait OperationProvider:
DynClone
+ Debug
+ Sync
+ Send {
// Required method
fn to_operation(&mut self) -> String;
}
Expand description
对象操作提供者接口
Required Methods§
Sourcefn to_operation(&mut self) -> String
fn to_operation(&mut self) -> String
转换为对象操作命令
Trait Implementations§
Source§impl<'clone> Clone for Box<dyn OperationProvider + 'clone>
impl<'clone> Clone for Box<dyn OperationProvider + 'clone>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more