pub struct DocumentColorParams {
pub work_done_progress_params_mixin: WorkDoneProgressParams,
pub partial_result_params_mixin: PartialResultParams,
pub text_document: TextDocumentIdentifier,
}Expand description
Parameters for a {@link DocumentColorRequest}.
Fields§
§work_done_progress_params_mixin: WorkDoneProgressParams§partial_result_params_mixin: PartialResultParams§text_document: TextDocumentIdentifierThe text document.
Trait Implementations§
Source§impl Clone for DocumentColorParams
impl Clone for DocumentColorParams
Source§fn clone(&self) -> DocumentColorParams
fn clone(&self) -> DocumentColorParams
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 moreSource§impl Debug for DocumentColorParams
impl Debug for DocumentColorParams
Source§impl<'de> Deserialize<'de> for DocumentColorParams
impl<'de> Deserialize<'de> for DocumentColorParams
Source§fn 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
Source§impl PartialEq for DocumentColorParams
impl PartialEq for DocumentColorParams
Source§fn eq(&self, other: &DocumentColorParams) -> bool
fn eq(&self, other: &DocumentColorParams) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DocumentColorParams
impl Serialize for DocumentColorParams
impl StructuralPartialEq for DocumentColorParams
Auto Trait Implementations§
impl Freeze for DocumentColorParams
impl RefUnwindSafe for DocumentColorParams
impl Send for DocumentColorParams
impl Sync for DocumentColorParams
impl Unpin for DocumentColorParams
impl UnsafeUnpin for DocumentColorParams
impl UnwindSafe for DocumentColorParams
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