Struct fuel_gql_client::schema::CompletionsArguments
source · [−]pub struct CompletionsArguments {
pub column: i64,
pub frame_id: Option<i64>,
pub line: Option<i64>,
pub text: String,
}
Expand description
Arguments for ‘completions’ request.
Fields
column: i64
The character position for which to determine the completion proposals.
frame_id: Option<i64>
Returns completions in the scope of this stack frame. If not specified, the completions are returned for the global scope.
line: Option<i64>
An optional line for which to determine the completion proposals. If missing the first line of the text is assumed.
text: String
One or more source lines. Typically this is the text a user has typed into the debug console before he asked for completion.
Trait Implementations
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CompletionsArguments
impl Send for CompletionsArguments
impl Sync for CompletionsArguments
impl Unpin for CompletionsArguments
impl UnwindSafe for CompletionsArguments
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more