pub struct RawCommand<'t> {
pub identifier: Cow<'t, [u8]>,
pub tokens: Vec<Token<'t>>,
}Fields§
§identifier: Cow<'t, [u8]>§tokens: Vec<Token<'t>>Trait Implementations§
Source§impl<'t> Clone for RawCommand<'t>
impl<'t> Clone for RawCommand<'t>
Source§fn clone(&self) -> RawCommand<'t>
fn clone(&self) -> RawCommand<'t>
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<'t> Debug for RawCommand<'t>
impl<'t> Debug for RawCommand<'t>
Source§impl<'t> PartialEq for RawCommand<'t>
impl<'t> PartialEq for RawCommand<'t>
impl<'t> Eq for RawCommand<'t>
impl<'t> StructuralPartialEq for RawCommand<'t>
Auto Trait Implementations§
impl<'t> Freeze for RawCommand<'t>
impl<'t> RefUnwindSafe for RawCommand<'t>
impl<'t> Send for RawCommand<'t>
impl<'t> Sync for RawCommand<'t>
impl<'t> Unpin for RawCommand<'t>
impl<'t> UnsafeUnpin for RawCommand<'t>
impl<'t> UnwindSafe for RawCommand<'t>
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