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§
Source§impl Clone for ColorPresentationParams
impl Clone for ColorPresentationParams
Source§fn clone(&self) -> ColorPresentationParams
fn clone(&self) -> ColorPresentationParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ColorPresentationParams
impl Debug for ColorPresentationParams
Source§impl<'de> Deserialize<'de> for ColorPresentationParams
impl<'de> Deserialize<'de> for ColorPresentationParams
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ColorPresentationParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ColorPresentationParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ColorPresentationParams
impl PartialEq for ColorPresentationParams
Source§impl Serialize for ColorPresentationParams
impl Serialize for ColorPresentationParams
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ColorPresentationParams
Auto Trait Implementations§
impl !Freeze for ColorPresentationParams
impl !RefUnwindSafe for ColorPresentationParams
impl Send for ColorPresentationParams
impl Sync for ColorPresentationParams
impl Unpin for ColorPresentationParams
impl UnwindSafe for ColorPresentationParams
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