pub struct CompletionContext {
Show 22 fields pub all_types: bool, pub all_values: bool, pub class_type_values: bool, pub dot_members: bool, pub arrow_members: bool, pub enum_tags: bool, pub union_tags: bool, pub struct_tags: bool, pub class_names: bool, pub namespaces: bool, pub nested_name_specifiers: bool, pub macro_names: bool, pub natural_language: bool, pub objc_object_values: bool, pub objc_selector_values: bool, pub objc_property_members: bool, pub objc_interfaces: bool, pub objc_protocols: bool, pub objc_categories: bool, pub objc_instance_messages: bool, pub objc_class_messages: bool, pub objc_selector_names: bool,
}
Expand description

Indicates which types of results were included in a set of code completion results.

Fields

all_types: bool

Indicates whether all possible types were included.

all_values: bool

Indicates whether all possible values were included.

class_type_values: bool

Indicates whether values that resolve to C++ class types were included.

dot_members: bool

Indicates whether the members of a record that are accessed with the dot operator were included.

arrow_members: bool

Indicates whether the members of a record that are accessed with the arrow operator were included.

enum_tags: bool

Indicates whether enum tags were included.

union_tags: bool

Indicates whether union tags were included.

struct_tags: bool

Indicates whether struct tags were included.

class_names: bool

Indicates whether C++ class names were included.

namespaces: bool

Indicates whether C++ namespaces and namespace aliases were included.

nested_name_specifiers: bool

Indicates whether C++ nested name specifiers were included.

macro_names: bool

Indicates whether macro names were included.

natural_language: bool

Indicates whether natural language results were included.

objc_object_values: bool

Indicates whether values that resolve to Objective-C objects were included.

objc_selector_values: bool

Indicates whether values that resolve to Objective-C selectors were included.

objc_property_members: bool

Indicates whether the properties of an Objective-C object that are accessed with the dot operator were included.

objc_interfaces: bool

Indicates whether Objective-C interfaces were included.

objc_protocols: bool

Indicates whether Objective-C protocols were included.

objc_categories: bool

Indicates whether Objective-C categories were included.

objc_instance_messages: bool

Indicates whether Objective-C instance messages were included.

objc_class_messages: bool

Indicates whether Objective-C class messages were included.

objc_selector_names: bool

Indicates whether Objective-C selector names were included.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.