pub struct GotoTargetsArguments {
pub column: Option<i64>,
pub line: i64,
pub source: Source,
}
Expand description
Arguments for ‘gotoTargets’ request.
Fields§
§column: Option<i64>
An optional column location for which the goto targets are determined.
line: i64
The line location for which the goto targets are determined.
source: Source
The source location for which the goto targets are determined.
Trait Implementations§
Source§impl Clone for GotoTargetsArguments
impl Clone for GotoTargetsArguments
Source§fn clone(&self) -> GotoTargetsArguments
fn clone(&self) -> GotoTargetsArguments
Returns a copy 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 GotoTargetsArguments
impl Debug for GotoTargetsArguments
Source§impl<'de> Deserialize<'de> for GotoTargetsArguments
impl<'de> Deserialize<'de> for GotoTargetsArguments
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 PartialEq for GotoTargetsArguments
impl PartialEq for GotoTargetsArguments
Source§impl Serialize for GotoTargetsArguments
impl Serialize for GotoTargetsArguments
impl StructuralPartialEq for GotoTargetsArguments
Auto Trait Implementations§
impl Freeze for GotoTargetsArguments
impl RefUnwindSafe for GotoTargetsArguments
impl Send for GotoTargetsArguments
impl Sync for GotoTargetsArguments
impl Unpin for GotoTargetsArguments
impl UnwindSafe for GotoTargetsArguments
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