pub trait ImplProcessMessage:
Clone
+ Sized
+ Rc {
// Required methods
fn is_valid(&self) -> c_int;
fn is_read_only(&self) -> c_int;
fn copy(&self) -> Option<ProcessMessage>;
fn get_name(&self) -> CefStringUserfree;
fn get_argument_list(&self) -> Option<ListValue>;
fn get_shared_memory_region(&self) -> Option<SharedMemoryRegion>;
fn get_raw(&self) -> *mut _cef_process_message_t;
}Required Methods§
fn is_valid(&self) -> c_int
fn is_read_only(&self) -> c_int
fn copy(&self) -> Option<ProcessMessage>
fn get_name(&self) -> CefStringUserfree
fn get_argument_list(&self) -> Option<ListValue>
fn get_raw(&self) -> *mut _cef_process_message_t
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.