pub struct EuvVconsoleDrawerProps {
pub console_signal: Signal<Vec<ConsoleEntry>>,
pub panel_open: Signal<bool>,
}Expand description
Props for the euv_vconsole_drawer component.
Defines the strongly-typed interface for the vConsole drawer panel.
Fields§
§console_signal: Signal<Vec<ConsoleEntry>>The reactive signal holding the console log entries.
panel_open: Signal<bool>The reactive signal controlling panel visibility.
Trait Implementations§
Source§impl Clone for EuvVconsoleDrawerProps
impl Clone for EuvVconsoleDrawerProps
Source§fn clone(&self) -> EuvVconsoleDrawerProps
fn clone(&self) -> EuvVconsoleDrawerProps
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EuvVconsoleDrawerProps
impl Debug for EuvVconsoleDrawerProps
Source§impl Default for EuvVconsoleDrawerProps
impl Default for EuvVconsoleDrawerProps
Source§fn default() -> EuvVconsoleDrawerProps
fn default() -> EuvVconsoleDrawerProps
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EuvVconsoleDrawerProps
impl RefUnwindSafe for EuvVconsoleDrawerProps
impl Send for EuvVconsoleDrawerProps
impl Sync for EuvVconsoleDrawerProps
impl Unpin for EuvVconsoleDrawerProps
impl UnsafeUnpin for EuvVconsoleDrawerProps
impl UnwindSafe for EuvVconsoleDrawerProps
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