pub struct ExprString {
pub value: Vec<u8>,
pub span: Span,
}Expand description
lua string literal value
Fields§
§value: Vec<u8>§span: SpanImplementations§
Trait Implementations§
Source§impl Clone for ExprString
impl Clone for ExprString
Source§fn clone(&self) -> ExprString
fn clone(&self) -> ExprString
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 ExprString
impl Debug for ExprString
Auto Trait Implementations§
impl Freeze for ExprString
impl RefUnwindSafe for ExprString
impl Send for ExprString
impl Sync for ExprString
impl Unpin for ExprString
impl UnwindSafe for ExprString
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