pub struct GotoTargetsRequest {
pub arguments: GotoTargetsArguments,
pub command: String,
pub seq: i64,
pub type_: String,
}
Fields§
§arguments: GotoTargetsArguments
Object containing arguments for the command.
command: String
The command to execute.
seq: i64
Sequence number.
type_: String
Message type.
Trait Implementations§
Source§impl Clone for GotoTargetsRequest
impl Clone for GotoTargetsRequest
Source§fn clone(&self) -> GotoTargetsRequest
fn clone(&self) -> GotoTargetsRequest
Returns a duplicate 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 GotoTargetsRequest
impl Debug for GotoTargetsRequest
Source§impl<'de> Deserialize<'de> for GotoTargetsRequest
impl<'de> Deserialize<'de> for GotoTargetsRequest
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 GotoTargetsRequest
impl PartialEq for GotoTargetsRequest
Source§impl Serialize for GotoTargetsRequest
impl Serialize for GotoTargetsRequest
impl StructuralPartialEq for GotoTargetsRequest
Auto Trait Implementations§
impl Freeze for GotoTargetsRequest
impl RefUnwindSafe for GotoTargetsRequest
impl Send for GotoTargetsRequest
impl Sync for GotoTargetsRequest
impl Unpin for GotoTargetsRequest
impl UnwindSafe for GotoTargetsRequest
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