pub struct CompletionListDTO {
pub Suggestions: Vec<CompletionItemDTO>,
pub IsIncomplete: bool,
}Expand description
A serializable struct representing a list of completion items, analogous to
vscode.CompletionList.
Fields§
§Suggestions: Vec<CompletionItemDTO>The completion items.
IsIncomplete: boolA flag indicating if this completion list is incomplete.
Trait Implementations§
Source§impl Clone for CompletionListDTO
impl Clone for CompletionListDTO
Source§fn clone(&self) -> CompletionListDTO
fn clone(&self) -> CompletionListDTO
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 Debug for CompletionListDTO
impl Debug for CompletionListDTO
Source§impl<'de> Deserialize<'de> for CompletionListDTO
impl<'de> Deserialize<'de> for CompletionListDTO
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
Auto Trait Implementations§
impl Freeze for CompletionListDTO
impl RefUnwindSafe for CompletionListDTO
impl Send for CompletionListDTO
impl Sync for CompletionListDTO
impl Unpin for CompletionListDTO
impl UnwindSafe for CompletionListDTO
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