pub trait ServoDelegate {
// Provided methods
fn notify_error(&self, _servo: &Servo, _error: ServoError) { ... }
fn notify_devtools_server_started(
&self,
_servo: &Servo,
_port: u16,
_token: String,
) { ... }
fn request_devtools_connection(
&self,
_servo: &Servo,
_request: AllowOrDenyRequest,
) { ... }
fn load_web_resource(&self, _load: WebResourceLoad) { ... }
fn show_notification(&self, _notification: Notification) { ... }
}
Provided Methods§
Sourcefn notify_error(&self, _servo: &Servo, _error: ServoError)
fn notify_error(&self, _servo: &Servo, _error: ServoError)
Notification that Servo has received a major error.
Sourcefn notify_devtools_server_started(
&self,
_servo: &Servo,
_port: u16,
_token: String,
)
fn notify_devtools_server_started( &self, _servo: &Servo, _port: u16, _token: String, )
Report that the DevTools server has started on the given port
. The token
that
be used to bypass the permission prompt from the DevTools client.
Sourcefn request_devtools_connection(
&self,
_servo: &Servo,
_request: AllowOrDenyRequest,
)
fn request_devtools_connection( &self, _servo: &Servo, _request: AllowOrDenyRequest, )
Request a DevTools connection from a DevTools client. Typically an embedder application will show a permissions prompt when this happens to confirm a connection is allowed.
Sourcefn load_web_resource(&self, _load: WebResourceLoad)
fn load_web_resource(&self, _load: WebResourceLoad)
Triggered when Servo will load a web (HTTP/HTTPS) resource. The load may be
intercepted and alternate contents can be loaded by the client by calling
WebResourceLoad::intercept
. If not handled, the load will continue as normal.
Note: This delegate method is called for all resource loads not associated with a
[WebView
]. For loads associated with a [WebView
], Servo will call
crate::WebViewDelegate::load_web_resource
.
Sourcefn show_notification(&self, _notification: Notification)
fn show_notification(&self, _notification: Notification)
Request to display a notification.