1 2 3 4 5 6 7 8 9 10 11 12
use crate::types::{NavigationType, WindowFeatures}; /// Parameters in create view callback. pub struct CreateViewParameters { /// The navigation type. pub navigation_type: NavigationType, /// The url. pub url: String, /// The window features. pub window_features: WindowFeatures, }