pub struct DocumentRangeFormattingParams {
pub text_document: TextDocumentIdentifier,
pub range: Range,
pub options: FormattingOptions,
pub work_done_progress_params: WorkDoneProgressParams,
}
Fields§
§text_document: TextDocumentIdentifier
The document to format.
range: Range
The range to format
options: FormattingOptions
The format options
work_done_progress_params: WorkDoneProgressParams
Trait Implementations§
Source§impl Clone for DocumentRangeFormattingParams
impl Clone for DocumentRangeFormattingParams
Source§fn clone(&self) -> DocumentRangeFormattingParams
fn clone(&self) -> DocumentRangeFormattingParams
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<'de> Deserialize<'de> for DocumentRangeFormattingParams
impl<'de> Deserialize<'de> for DocumentRangeFormattingParams
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DocumentRangeFormattingParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DocumentRangeFormattingParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DocumentRangeFormattingParams
impl PartialEq for DocumentRangeFormattingParams
Source§fn eq(&self, other: &DocumentRangeFormattingParams) -> bool
fn eq(&self, other: &DocumentRangeFormattingParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for DocumentRangeFormattingParams
impl Serialize for DocumentRangeFormattingParams
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 DocumentRangeFormattingParams
Auto Trait Implementations§
impl !Freeze for DocumentRangeFormattingParams
impl !RefUnwindSafe for DocumentRangeFormattingParams
impl Send for DocumentRangeFormattingParams
impl Sync for DocumentRangeFormattingParams
impl Unpin for DocumentRangeFormattingParams
impl UnwindSafe for DocumentRangeFormattingParams
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