pub struct Log {
pub contents: String,
pub active: bool,
/* private fields */
}
Expand description
Component for logging messages.
Fields§
§contents: String
Current contents of the log.
active: bool
Whether the log is active.
Implementations§
Trait Implementations§
source§impl Windowable<()> for Log
impl Windowable<()> for Log
source§const CONTEXT_MENU: bool = true
const CONTEXT_MENU: bool = true
Whether to enable the context menu.
source§const DEFAULT_OPTIONS: bool = true
const DEFAULT_OPTIONS: bool = true
Whether to enable the default menu entries.
Renders the window context menu contents.
Auto Trait Implementations§
impl Freeze for Log
impl RefUnwindSafe for Log
impl Send for Log
impl Sync for Log
impl Unpin for Log
impl UnwindSafe for Log
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