pub struct FoldingRangeRegistrationOptions {
pub document_selector: Value,
pub id: Option<String>,
pub work_done_progress: Option<bool>,
}Fields§
§document_selector: ValueA document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.
id: Option<String>The id used to register the request. The id can be used to deregister the request again. See also Registration#id.
work_done_progress: Option<bool>Trait Implementations§
Source§impl Clone for FoldingRangeRegistrationOptions
impl Clone for FoldingRangeRegistrationOptions
Source§fn clone(&self) -> FoldingRangeRegistrationOptions
fn clone(&self) -> FoldingRangeRegistrationOptions
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 Default for FoldingRangeRegistrationOptions
impl Default for FoldingRangeRegistrationOptions
Source§fn default() -> FoldingRangeRegistrationOptions
fn default() -> FoldingRangeRegistrationOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FoldingRangeRegistrationOptions
impl<'de> Deserialize<'de> for FoldingRangeRegistrationOptions
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 FoldingRangeRegistrationOptions
impl PartialEq for FoldingRangeRegistrationOptions
Source§fn eq(&self, other: &FoldingRangeRegistrationOptions) -> bool
fn eq(&self, other: &FoldingRangeRegistrationOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FoldingRangeRegistrationOptions
Auto Trait Implementations§
impl Freeze for FoldingRangeRegistrationOptions
impl RefUnwindSafe for FoldingRangeRegistrationOptions
impl Send for FoldingRangeRegistrationOptions
impl Sync for FoldingRangeRegistrationOptions
impl Unpin for FoldingRangeRegistrationOptions
impl UnwindSafe for FoldingRangeRegistrationOptions
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