pub struct GotoRequest {
pub arguments: GotoArguments,
pub command: String,
pub seq: i64,
pub type_: String,
}
Fields§
§arguments: GotoArguments
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 GotoRequest
impl Clone for GotoRequest
Source§fn clone(&self) -> GotoRequest
fn clone(&self) -> GotoRequest
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 GotoRequest
impl Debug for GotoRequest
Source§impl<'de> Deserialize<'de> for GotoRequest
impl<'de> Deserialize<'de> for GotoRequest
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 GotoRequest
impl PartialEq for GotoRequest
Source§impl Serialize for GotoRequest
impl Serialize for GotoRequest
impl StructuralPartialEq for GotoRequest
Auto Trait Implementations§
impl Freeze for GotoRequest
impl RefUnwindSafe for GotoRequest
impl Send for GotoRequest
impl Sync for GotoRequest
impl Unpin for GotoRequest
impl UnwindSafe for GotoRequest
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