pub struct ConsoleMessage {
pub level: ConsoleLevel,
pub text: String,
}Expand description
Console message from the browser
Fields§
§level: ConsoleLevelMessage level (log, warn, error)
text: StringMessage text
Trait Implementations§
Source§impl Clone for ConsoleMessage
impl Clone for ConsoleMessage
Source§fn clone(&self) -> ConsoleMessage
fn clone(&self) -> ConsoleMessage
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 moreAuto Trait Implementations§
impl Freeze for ConsoleMessage
impl RefUnwindSafe for ConsoleMessage
impl Send for ConsoleMessage
impl Sync for ConsoleMessage
impl Unpin for ConsoleMessage
impl UnwindSafe for ConsoleMessage
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