pub struct DocumentRangeFormattingParams {
pub text_document: TextDocumentIdentifier,
pub range: Range,
pub options: FormattingOptions,
}
Fields§
§text_document: TextDocumentIdentifier
The document to format.
range: Range
The range to format
options: FormattingOptions
The format options
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DocumentRangeFormattingParams
impl<'de> Deserialize<'de> for DocumentRangeFormattingParams
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 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 ==
.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