pub enum InlineCompletionItemArrayOrInlineCompletionList {
InlineCompletionItemArray(Vec<InlineCompletionItem>),
InlineCompletionList(InlineCompletionList),
}Variants§
InlineCompletionItemArray(Vec<InlineCompletionItem>)
InlineCompletionList(InlineCompletionList)
Trait Implementations§
Source§impl Clone for InlineCompletionItemArrayOrInlineCompletionList
impl Clone for InlineCompletionItemArrayOrInlineCompletionList
Source§fn clone(&self) -> InlineCompletionItemArrayOrInlineCompletionList
fn clone(&self) -> InlineCompletionItemArrayOrInlineCompletionList
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<'de> Deserialize<'de> for InlineCompletionItemArrayOrInlineCompletionList
impl<'de> Deserialize<'de> for InlineCompletionItemArrayOrInlineCompletionList
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 InlineCompletionItemArrayOrInlineCompletionList
impl PartialEq for InlineCompletionItemArrayOrInlineCompletionList
Source§fn eq(&self, other: &InlineCompletionItemArrayOrInlineCompletionList) -> bool
fn eq(&self, other: &InlineCompletionItemArrayOrInlineCompletionList) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InlineCompletionItemArrayOrInlineCompletionList
Auto Trait Implementations§
impl Freeze for InlineCompletionItemArrayOrInlineCompletionList
impl RefUnwindSafe for InlineCompletionItemArrayOrInlineCompletionList
impl Send for InlineCompletionItemArrayOrInlineCompletionList
impl Sync for InlineCompletionItemArrayOrInlineCompletionList
impl Unpin for InlineCompletionItemArrayOrInlineCompletionList
impl UnsafeUnpin for InlineCompletionItemArrayOrInlineCompletionList
impl UnwindSafe for InlineCompletionItemArrayOrInlineCompletionList
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