Struct clang::CompletionContext [] [src]

pub struct CompletionContext {
    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,
}

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

impl Hash for CompletionContext
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl Eq for CompletionContext
[src]

impl PartialEq for CompletionContext
[src]

fn eq(&self, __arg_0: &CompletionContext) -> bool

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

fn ne(&self, __arg_0: &CompletionContext) -> bool

This method tests for !=.

impl Debug for CompletionContext
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for CompletionContext
[src]

fn clone(&self) -> CompletionContext

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for CompletionContext
[src]

impl From<CXCompletionContext> for CompletionContext
[src]

fn from(flags: CXCompletionContext) -> CompletionContext

Performs the conversion.

impl Into<CXCompletionContext> for CompletionContext
[src]

fn into(self) -> CXCompletionContext

Performs the conversion.