pub struct WindowBarInfo {
pub id: WindowId,
pub title: String,
pub is_active: bool,
}Expand description
Summary info for a window, used in status bar rendering.
Fields§
§id: WindowId§title: String§is_active: boolTrait Implementations§
Source§impl Clone for WindowBarInfo
impl Clone for WindowBarInfo
Source§fn clone(&self) -> WindowBarInfo
fn clone(&self) -> WindowBarInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WindowBarInfo
impl Debug for WindowBarInfo
Source§impl<'de> Deserialize<'de> for WindowBarInfo
impl<'de> Deserialize<'de> for WindowBarInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WindowBarInfo
impl PartialEq for WindowBarInfo
Source§impl Serialize for WindowBarInfo
impl Serialize for WindowBarInfo
impl StructuralPartialEq for WindowBarInfo
Auto Trait Implementations§
impl Freeze for WindowBarInfo
impl RefUnwindSafe for WindowBarInfo
impl Send for WindowBarInfo
impl Sync for WindowBarInfo
impl Unpin for WindowBarInfo
impl UnsafeUnpin for WindowBarInfo
impl UnwindSafe for WindowBarInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more