pub struct GotoCommand {
pub block_id: String,
}Expand description
GOTO command - navigate cursor to a specific block
Fields§
§block_id: StringTarget block ID to navigate to
Trait Implementations§
Source§impl Clone for GotoCommand
impl Clone for GotoCommand
Source§fn clone(&self) -> GotoCommand
fn clone(&self) -> GotoCommand
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 GotoCommand
impl Debug for GotoCommand
Source§impl<'de> Deserialize<'de> for GotoCommand
impl<'de> Deserialize<'de> for GotoCommand
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 GotoCommand
impl PartialEq for GotoCommand
Source§impl Serialize for GotoCommand
impl Serialize for GotoCommand
impl StructuralPartialEq for GotoCommand
Auto Trait Implementations§
impl Freeze for GotoCommand
impl RefUnwindSafe for GotoCommand
impl Send for GotoCommand
impl Sync for GotoCommand
impl Unpin for GotoCommand
impl UnwindSafe for GotoCommand
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