//! Editor focus ownership messages.
usecrate::ecs::components::buffer::ViewEntity;usebevy::prelude::Message;/// Request to make one editor view the focused input and chrome target.
#[derive(Clone, Copy, Debug, Eq, Message, PartialEq)]pubstructFocusRequested{/// Editor view entity that should receive focus.
pubtarget: ViewEntity,
}