ImplProcessMessage

Trait ImplProcessMessage 

Source
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 name(&self) -> CefStringUserfree;
    fn argument_list(&self) -> Option<ListValue>;
    fn shared_memory_region(&self) -> Option<SharedMemoryRegion>;
    fn get_raw(&self) -> *mut _cef_process_message_t;
}

Required Methods§

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.

Implementors§