pub struct Comment(/* private fields */);
Expand description
Erasable stand-in for web_sys::Comment
used as callback parameter.
Use Materialize::materialize
to convert it to the actual value.
Implementations§
Trait Implementations§
Source§impl<'a> Materialize<&'a Comment> for &'a Comment
impl<'a> Materialize<&'a Comment> for &'a Comment
Source§fn materialize(self) -> &'a Comment
fn materialize(self) -> &'a Comment
Convert a DOM stand-in to its web type value. This is a no-op with the
"callbacks"
feature and unreachable otherwise.Source§impl Materialize<Comment> for Comment
impl Materialize<Comment> for Comment
Source§fn materialize(self) -> Comment
fn materialize(self) -> Comment
Convert a DOM stand-in to its web type value. This is a no-op with the
"callbacks"
feature and unreachable otherwise.Auto Trait Implementations§
impl Freeze for Comment
impl RefUnwindSafe for Comment
impl !Send for Comment
impl !Sync for Comment
impl Unpin for Comment
impl UnwindSafe for Comment
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