Render this display.
File
 
   - drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php, line 2487
 
  - Contains Drupal\views\Plugin\views\display\DisplayPluginBase.
 
  Class
  
  - DisplayPluginBase 
 
  - The default display plugin handler. Display plugins handle options and
basic mechanisms for different output methods.
 
  Namespace
  Drupal\views\Plugin\views\display
Code
public function render() {
  $element = array(
    '#theme' => $this
      ->themeFunctions(),
    '#view' => $this->view,
  );
  $element['#attached'] =& $this->view->element['#attached'];
  return $element;
}