pub struct HoverResult {
pub signature: String,
pub documentation: Option<String>,
}Expand description
Result from hover request
Fields§
§signature: StringType signature or primary hover content
documentation: Option<String>Documentation or additional info
Implementations§
Trait Implementations§
Source§impl Clone for HoverResult
impl Clone for HoverResult
Source§fn clone(&self) -> HoverResult
fn clone(&self) -> HoverResult
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 moreAuto Trait Implementations§
impl Freeze for HoverResult
impl RefUnwindSafe for HoverResult
impl Send for HoverResult
impl Sync for HoverResult
impl Unpin for HoverResult
impl UnsafeUnpin for HoverResult
impl UnwindSafe for HoverResult
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