pub struct CommandRecord {
pub line: usize,
pub syntax: CommandSyntax,
pub name: String,
pub properties: BTreeMap<String, String>,
pub data: String,
pub processed: bool,
pub outcome: String,
}Fields§
§line: usize§syntax: CommandSyntax§name: String§properties: BTreeMap<String, String>§data: String§processed: bool§outcome: StringTrait Implementations§
Source§impl Clone for CommandRecord
impl Clone for CommandRecord
Source§fn clone(&self) -> CommandRecord
fn clone(&self) -> CommandRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CommandRecord
impl Debug for CommandRecord
Auto Trait Implementations§
impl Freeze for CommandRecord
impl RefUnwindSafe for CommandRecord
impl Send for CommandRecord
impl Sync for CommandRecord
impl Unpin for CommandRecord
impl UnsafeUnpin for CommandRecord
impl UnwindSafe for CommandRecord
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