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

转换为对象操作命令

Trait Implementations§

source§

impl<'clone> Clone for Box<dyn OperationProvider + 'clone>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'clone> Clone for Box<dyn OperationProvider + Send + 'clone>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'clone> Clone for Box<dyn OperationProvider + Send + Sync + 'clone>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'clone> Clone for Box<dyn OperationProvider + Sync + 'clone>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Implementations on Foreign Types§

source§

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

source§

fn to_operation(&mut self) -> String

source§

impl<'a, T: 'a + OperationProvider + ?Sized> OperationProvider for &'a mut Twhere &'a mut T: DynClone + Debug + Sync + Send,

source§

fn to_operation(&mut self) -> String

Implementors§