Enum lsp_types::HoverContents
source · [−]pub enum HoverContents {
Scalar(MarkedString),
Array(Vec<MarkedString>),
Markup(MarkupContent),
}
Expand description
Hover contents could be single entry or multiple entries.
Variants
Scalar(MarkedString)
Array(Vec<MarkedString>)
Markup(MarkupContent)
Trait Implementations
sourceimpl Clone for HoverContents
impl Clone for HoverContents
sourcefn clone(&self) -> HoverContents
fn clone(&self) -> HoverContents
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for HoverContents
impl Debug for HoverContents
sourceimpl<'de> Deserialize<'de> for HoverContents
impl<'de> Deserialize<'de> for HoverContents
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<HoverContents> for HoverContents
impl PartialEq<HoverContents> for HoverContents
sourcefn eq(&self, other: &HoverContents) -> bool
fn eq(&self, other: &HoverContents) -> bool
sourceimpl Serialize for HoverContents
impl Serialize for HoverContents
impl Eq for HoverContents
impl StructuralEq for HoverContents
impl StructuralPartialEq for HoverContents
Auto Trait Implementations
impl RefUnwindSafe for HoverContents
impl Send for HoverContents
impl Sync for HoverContents
impl Unpin for HoverContents
impl UnwindSafe for HoverContents
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more