pub enum LineHandle {
Line(Line),
Handle(LineHandle),
}Variants§
Line(Line)
Handle(LineHandle)
Trait Implementations§
Source§impl Debug for LineHandle
impl Debug for LineHandle
Source§impl From<Line> for LineHandle
impl From<Line> for LineHandle
Source§impl From<LineHandle> for JsValue
impl From<LineHandle> for JsValue
Source§fn from(from: LineHandle) -> Self
fn from(from: LineHandle) -> Self
Converts to this type from the input type.
Source§impl From<LineHandle> for LineHandle
impl From<LineHandle> for LineHandle
Source§fn from(value: LineHandle) -> Self
fn from(value: LineHandle) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LineHandle
impl RefUnwindSafe for LineHandle
impl !Send for LineHandle
impl !Sync for LineHandle
impl Unpin for LineHandle
impl UnwindSafe for LineHandle
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