CefExtensions

Trait CefExtensions 

Source
pub trait CefExtensions {
    // Required method
    fn cef_extensions(
        &self,
        collector: &mut HashMap<String, String>,
    ) -> CefExtensionsResult;
}
Expand description

A trait that returns CEF Extensions. This is a roll-up trait that should ideally take into account any CEF extensions added by sub-fields or sub-objects from the object on which this is implemented.

Required Methods§

Source

fn cef_extensions( &self, collector: &mut HashMap<String, String>, ) -> CefExtensionsResult

Implementations on Foreign Types§

Source§

impl CefExtensions for OffsetDateTime

Implement CefExtensions (since it’s defined here) for type DateTime

Source§

fn cef_extensions( &self, collector: &mut HashMap<String, String>, ) -> CefExtensionsResult

we serialize using: Milliseconds since January 1, 1970 (integer). (This time format supplies an integer with the count in milliseconds from January 1, 1970 to the time the event occurred.)

Implementors§