[][src]Trait rust_cef::CefExtensions

pub trait CefExtensions {
    pub fn cef_extensions(
        &self,
        collector: &mut HashMap<String, String>
    ) -> CefExtensionsResult; }

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

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

Loading content...

Implementations on Foreign Types

impl CefExtensions for OffsetDateTime[src]

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

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

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.)

Loading content...

Implementors

Loading content...