pub struct FoldingRangeClientCapabilities {
pub dynamic_registration: Option<bool>,
pub range_limit: Option<u32>,
pub line_folding_only: Option<bool>,
}
Fields§
§dynamic_registration: Option<bool>
Whether implementation supports dynamic registration for folding range providers. If this is set to true
the client supports the new (FoldingRangeProviderOptions & TextDocumentRegistrationOptions & StaticRegistrationOptions)
return value for the corresponding server capability as well.
range_limit: Option<u32>
The maximum number of folding ranges that the client prefers to receive per document. The value serves as a hint, servers are free to follow the limit.
line_folding_only: Option<bool>
If set, the client signals that it only supports folding complete lines. If set, client will
ignore specified startCharacter
and endCharacter
properties in a FoldingRange.
Trait Implementations§
source§impl Clone for FoldingRangeClientCapabilities
impl Clone for FoldingRangeClientCapabilities
source§fn clone(&self) -> FoldingRangeClientCapabilities
fn clone(&self) -> FoldingRangeClientCapabilities
Returns a copy 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 Default for FoldingRangeClientCapabilities
impl Default for FoldingRangeClientCapabilities
source§fn default() -> FoldingRangeClientCapabilities
fn default() -> FoldingRangeClientCapabilities
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for FoldingRangeClientCapabilities
impl<'de> Deserialize<'de> for FoldingRangeClientCapabilities
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 FoldingRangeClientCapabilities
impl PartialEq for FoldingRangeClientCapabilities
source§fn eq(&self, other: &FoldingRangeClientCapabilities) -> bool
fn eq(&self, other: &FoldingRangeClientCapabilities) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for FoldingRangeClientCapabilities
impl StructuralEq for FoldingRangeClientCapabilities
impl StructuralPartialEq for FoldingRangeClientCapabilities
Auto Trait Implementations§
impl RefUnwindSafe for FoldingRangeClientCapabilities
impl Send for FoldingRangeClientCapabilities
impl Sync for FoldingRangeClientCapabilities
impl Unpin for FoldingRangeClientCapabilities
impl UnwindSafe for FoldingRangeClientCapabilities
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.