Struct lsp_types::ColorPresentationParams
source · [−]pub struct ColorPresentationParams {
pub text_document: TextDocumentIdentifier,
pub color: Color,
pub range: Range,
pub work_done_progress_params: WorkDoneProgressParams,
pub partial_result_params: PartialResultParams,
}
Fields
text_document: TextDocumentIdentifier
The text document.
color: Color
The color information to request presentations for.
range: Range
The range where the color would be inserted. Serves as a context.
work_done_progress_params: WorkDoneProgressParams
partial_result_params: PartialResultParams
Trait Implementations
sourceimpl Clone for ColorPresentationParams
impl Clone for ColorPresentationParams
sourcefn clone(&self) -> ColorPresentationParams
fn clone(&self) -> ColorPresentationParams
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 ColorPresentationParams
impl Debug for ColorPresentationParams
sourceimpl<'de> Deserialize<'de> for ColorPresentationParams
impl<'de> Deserialize<'de> for ColorPresentationParams
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<ColorPresentationParams> for ColorPresentationParams
impl PartialEq<ColorPresentationParams> for ColorPresentationParams
sourcefn eq(&self, other: &ColorPresentationParams) -> bool
fn eq(&self, other: &ColorPresentationParams) -> bool
sourceimpl Serialize for ColorPresentationParams
impl Serialize for ColorPresentationParams
impl StructuralPartialEq for ColorPresentationParams
Auto Trait Implementations
impl RefUnwindSafe for ColorPresentationParams
impl Send for ColorPresentationParams
impl Sync for ColorPresentationParams
impl Unpin for ColorPresentationParams
impl UnwindSafe for ColorPresentationParams
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