pub struct DeepLinkOptions {
pub editor: Option<String>,
}Expand description
Options extracted from a worktree:// deep link.
Fields§
§editor: Option<String>Editor override from the editor query param. May be a symbolic name
(cursor, code, zed, nvim, etc.) or a raw percent-decoded command.
Trait Implementations§
Source§impl Clone for DeepLinkOptions
impl Clone for DeepLinkOptions
Source§fn clone(&self) -> DeepLinkOptions
fn clone(&self) -> DeepLinkOptions
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 DeepLinkOptions
impl Debug for DeepLinkOptions
Source§impl Default for DeepLinkOptions
impl Default for DeepLinkOptions
Source§fn default() -> DeepLinkOptions
fn default() -> DeepLinkOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeepLinkOptions
impl RefUnwindSafe for DeepLinkOptions
impl Send for DeepLinkOptions
impl Sync for DeepLinkOptions
impl Unpin for DeepLinkOptions
impl UnsafeUnpin for DeepLinkOptions
impl UnwindSafe for DeepLinkOptions
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