pub trait WebDynproCommandExecutor {
// Required method
fn read<T: WebDynproCommand>(
&self,
command: T,
) -> Result<T::Result, WebDynproError>;
}
Expand description
명령을 실행할 수 있는 주체에 명령 실행을 할 수 있는 메소드를 추가
Required Methods§
Sourcefn read<T: WebDynproCommand>(
&self,
command: T,
) -> Result<T::Result, WebDynproError>
fn read<T: WebDynproCommand>( &self, command: T, ) -> Result<T::Result, WebDynproError>
WebDynpro 엘리먼트를 읽을 수 있는 파서에 읽기 명령을 전송합니다.
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.