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