pub struct GotoTargetsRequestArguments {
pub source: Source,
pub line: i32,
pub column: Option<i32>,
/* private fields */
}
Fields§
§source: Source
The source location for which the goto targets are determined.
line: i32
The line location for which the goto targets are determined.
column: Option<i32>
An optional column location for which the goto targets are determined.
Implementations§
Source§impl GotoTargetsRequestArguments
impl GotoTargetsRequestArguments
Sourcepub fn builder() -> GotoTargetsRequestArgumentsBuilder<((), (), ())>
pub fn builder() -> GotoTargetsRequestArgumentsBuilder<((), (), ())>
Create a builder for building GotoTargetsRequestArguments
.
On the builder, call .source(...)
, .line(...)
, .column(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of GotoTargetsRequestArguments
.
Trait Implementations§
Source§impl Clone for GotoTargetsRequestArguments
impl Clone for GotoTargetsRequestArguments
Source§fn clone(&self) -> GotoTargetsRequestArguments
fn clone(&self) -> GotoTargetsRequestArguments
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GotoTargetsRequestArguments
impl Debug for GotoTargetsRequestArguments
Source§impl<'de> Deserialize<'de> for GotoTargetsRequestArguments
impl<'de> Deserialize<'de> for GotoTargetsRequestArguments
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 From<GotoTargetsRequestArguments> for ProtocolMessageContent
impl From<GotoTargetsRequestArguments> for ProtocolMessageContent
Source§fn from(args: GotoTargetsRequestArguments) -> Self
fn from(args: GotoTargetsRequestArguments) -> Self
Converts to this type from the input type.
Source§impl From<GotoTargetsRequestArguments> for Request
impl From<GotoTargetsRequestArguments> for Request
Source§fn from(args: GotoTargetsRequestArguments) -> Self
fn from(args: GotoTargetsRequestArguments) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GotoTargetsRequestArguments
impl PartialEq for GotoTargetsRequestArguments
Source§fn eq(&self, other: &GotoTargetsRequestArguments) -> bool
fn eq(&self, other: &GotoTargetsRequestArguments) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for GotoTargetsRequestArguments
impl StructuralPartialEq for GotoTargetsRequestArguments
Auto Trait Implementations§
impl Freeze for GotoTargetsRequestArguments
impl RefUnwindSafe for GotoTargetsRequestArguments
impl Send for GotoTargetsRequestArguments
impl Sync for GotoTargetsRequestArguments
impl Unpin for GotoTargetsRequestArguments
impl UnwindSafe for GotoTargetsRequestArguments
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.