pub struct CommandWithProperties<'a> {
pub command: &'a str,
pub value: &'a str,
pub title: Option<&'a str>,
pub file: Option<&'a str>,
pub col: Option<usize>,
pub end_column: Option<usize>,
pub line: Option<usize>,
pub end_line: Option<usize>,
}
Fields§
§command: &'a str
§value: &'a str
§title: Option<&'a str>
§file: Option<&'a str>
§col: Option<usize>
§end_column: Option<usize>
§line: Option<usize>
§end_line: Option<usize>
Trait Implementations§
Source§impl<'a> Default for CommandWithProperties<'a>
impl<'a> Default for CommandWithProperties<'a>
Source§fn default() -> CommandWithProperties<'a>
fn default() -> CommandWithProperties<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for CommandWithProperties<'a>
impl<'a> RefUnwindSafe for CommandWithProperties<'a>
impl<'a> Send for CommandWithProperties<'a>
impl<'a> Sync for CommandWithProperties<'a>
impl<'a> Unpin for CommandWithProperties<'a>
impl<'a> UnwindSafe for CommandWithProperties<'a>
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